[Mono-bugs] [Bug 25913] New - Mono can't display swedish characters

bugzilla-daemon@rocky.ximian.com bugzilla-daemon@rocky.ximian.com
6 Jun 2002 19:32:00 -0000


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 ds98rito@thn.htu.se.

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

--- shadow/25913	Thu Jun  6 15:32:00 2002
+++ shadow/25913.tmp.1195	Thu Jun  6 15:32:00 2002
@@ -0,0 +1,56 @@
+Bug#: 25913
+Product: Mono/Class Libraries
+Version: unspecified
+OS: Red Hat 7.2
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Normal
+Component: CORLIB
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: ds98rito@thn.htu.se               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Summary: Mono can't display swedish characters
+
+Description of Problem:
+Mono can't display swedish characters like å ä and ö
+
+Steps to reproduce the problem:
+1. Compile some source containing å ä or ö and try to use WriteLine
+together with å ä or ö
+Actual Results:
+Other characters gets printed but not å ä ö
+
+Expected Results:
+Should print å ä and ö as well
+
+How often does this happen? 
+Every time
+
+Additional Information:
+mono-0.11_baselabs-20020606
+This is something that probably is not implemented yet.
+That is why I put it in the CORLIB component.
+
+
+SOURCE to test behaviour.
+As of now it prints everything up until the letter z.
+
+*** BEGIN ***
+
+using System;
+
+class lalle {
+
+	public static void Main() {
+		Console.WriteLine("abcdefghjijklmnopqrstuvwqyzåäö");
+	}
+}
+
+*** END ***
+
+
+/Richard