[Mono-bugs] [Bug 59716][Nor] New - CultureInfo.InvariantCulture is regarded as neutral culture
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Mon, 7 Jun 2004 12:10:08 -0400 (EDT)
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 atsushi@ximian.com.
http://bugzilla.ximian.com/show_bug.cgi?id=59716
--- shadow/59716 2004-06-07 12:10:08.000000000 -0400
+++ shadow/59716.tmp.17540 2004-06-07 12:10:08.000000000 -0400
@@ -0,0 +1,45 @@
+Bug#: 59716
+Product: Mono: Class Libraries
+Version: unspecified
+OS:
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Normal
+Component: CORLIB
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: atsushi@ximian.com
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: CultureInfo.InvariantCulture is regarded as neutral culture
+
+Our CultureInfo.InvariantCulture is currently marked as "neutral culture"
+(IsNeutralCulture = true), while MS.NET one holds false.
+
+
+using System.Globalization;
+using System.Threading;
+
+public class Test
+{
+ public static void Main ()
+ {
+ CultureInfo ci = CultureInfo.InvariantCulture;
+ Console.WriteLine (ci.IsNeutralCulture);
+ }
+}
+
+Expected Results:
+$ ./invariant.exe
+False
+
+Actual Results:
+$ mono invariant.exe
+True
+
+Additional Info:
+We won't fix this problem before Mono 1.0 release. It will affect on too
+many areas in our System.Globalization support.