[Mono-bugs] [Bug 57016][Wis] New - PercentGroupSizes wrong for en-us locale

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Wed, 14 Apr 2004 14:33:19 -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 lluis@ximian.com.

http://bugzilla.ximian.com/show_bug.cgi?id=57016

--- shadow/57016	2004-04-14 14:33:19.000000000 -0400
+++ shadow/57016.tmp.14747	2004-04-14 14:33:19.000000000 -0400
@@ -0,0 +1,30 @@
+Bug#: 57016
+Product: Mono: Class Libraries
+Version: unspecified
+OS: 
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Wishlist
+Component: CORLIB
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: lluis@ximian.com               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: PercentGroupSizes wrong for en-us locale
+
+PercentGroupSizes are wrong for en-us locale:
+
+public class Test
+{
+	public static void Main ()
+	{
+		CultureInfo EnUs = new CultureInfo ("en-us", false);
+		Console.WriteLine (EnUs.NumberFormat.PercentGroupSizes[0]);
+	}
+}
+
+writes 2 and should write 3.