Please do not reply to this email- if you want to comment on the bug, go to the URL shown below and enter your comments there.
Changed by [EMAIL PROTECTED] http://bugzilla.ximian.com/show_bug.cgi?id=78569 --- shadow/78569 2006-06-02 08:19:16.000000000 -0400 +++ shadow/78569.tmp.28163 2006-06-02 08:19:16.000000000 -0400 @@ -0,0 +1,40 @@ +Bug#: 78569 +Product: Mono: Class Libraries +Version: 1.1 +OS: +OS Details: +Status: NEW +Resolution: +Severity: +Priority: Major +Component: System +AssignedTo: [EMAIL PROTECTED] +ReportedBy: [EMAIL PROTECTED] +QAContact: [EMAIL PROTECTED] +TargetMilestone: --- +URL: +Cc: +Summary: DateTime.Parse fails to use culture info + +Running the program below outputs something like: + 02/06/2006 12:58:26 06/02/2006 12:58:26 + +But should output: + 02/06/2006 12:58:26 02/06/2006 12:58:26 + +mono 1.1.15 +-- + +using System; +using System.Globalization; + +public class test_t { + public static void Main() { + DateTime dt = DateTime.Now; + Console.WriteLine("{0} {1}", dt, + +DateTime.Parse(dt.ToString(new CultureInfo("en-GB")), + +new CultureInfo("en-GB"))); + } +} _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
