[Mono-bugs] [Bug 52065][Min] New - Problems with Culture and ByteFX

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Tue, 6 Jan 2004 12:27:35 -0500 (EST)


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 miguel@ximian.com.

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

--- shadow/52065	2004-01-06 12:27:35.000000000 -0500
+++ shadow/52065.tmp.22690	2004-01-06 12:27:35.000000000 -0500
@@ -0,0 +1,67 @@
+Bug#: 52065
+Product: Mono/Class Libraries
+Version: unspecified
+OS: All
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: Unknown
+Priority: Minor
+Component: CORLIB
+AssignedTo: dick@ximian.com                            
+ReportedBy: gonzalo@ximian.com               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: Problems with Culture and ByteFX
+
+Compile the attached test case with:
+mcs -r ByteFX.Data -r System.Data kk.cs
+
+Expected output:
+Thursday, 11 December 2003 21:25
+System.String
+
+Actual output:
+** Message: : u_strToLower error: U_FILE_ACCESS_ERRORde-DEThursday, 11
+December 2003 21:21** Message: : u_strToLower error: U_FILE_ACCESS_ERROR**
+Message: : u_strToLower error: U_FILE_ACCESS_ERROR** Message: :
+u_strToLower error: U_FILE_ACCESS_ERROR** Message: : u_strToLower error:
+U_FILE_ACCESS_ERROR** Message: : u_strToLower error: U_FILE_ACCESS_ERROR**
+Message: : u_strToLower error: U_FILE_ACCESS_ERROR** Message: :
+u_strToLower error: U_FILE_ACCESS_ERROR** Message: : u_strToLower error:
+U_FILE_ACCESS_ERROR** Message: : u_strToLower error: U_FILE_ACCESS_ERROR**
+Message: : u_strToLower error: U_FILE_ACCESS_ERROR** Message: :
+u_strToLower error: U_FILE_ACCESS_ERROR** Message: : u_strToLower error:
+U_FILE_ACCESS_ERROR** Message: : u_strToLower error: U_FILE_ACCESS_ERROR**
+Message: : u_strToLower error: U_FILE_ACCESS_ERROR** Message: :
+u_strToLower error: U_FILE_ACCESS_ERROR** Message: : u_strToLower error:
+U_FILE_ACCESS_ERROR** Message: : u_strToLower error: U_FILE_ACCESS_ERROR**
+Message: : u_strToLower error: U_FILE_ACCESS_ERROR** Message: :
+u_strToLower error: U_FILE_ACCESS_ERROR** Message: : u_strToLower error:
+U_FILE_ACCESS_ERROR
+
+Test case and bug report by Stanislav Neuberger <stas@okean.de>
+
+------- Additional Comments From gonzalo@ximian.com  2003-12-11 15:47 -------
+Created an attachment (id=6199)
+Test case
+
+
+------- Additional Comments From miguel@ximian.com  2004-01-06 12:27 -------
+I also get this error with a simpler program:
+
+using System;
+class Hello {
+  static void Main() {
+    System.Threading.Thread.CurrentThread.CurrentCulture =
+    System.Threading.Thread.CurrentThread.CurrentUICulture =
+      new System.Globalization.CultureInfo("de-DE");
+    Console.WriteLine("Hello");
+  }
+}
+
+Compile and run.
+
+