http://bugzilla.novell.com/show_bug.cgi?id=565703
http://bugzilla.novell.com/show_bug.cgi?id=565703#c2 --- Comment #2 from Ed Anuff <[email protected]> 2009-12-27 22:05:31 UTC --- I believe this is actually a problem with NSString. The following code bypasses the class library binding and forces Unicode encoding of the data, and still results in the ???? string: public static string GetText(UITextField ob) { NSString nsstr = new NSString(Messaging.IntPtr_objc_msgSend(ob.Handle, new Selector("text").Handle)); NSData nsdata = new NSData(Messaging.IntPtr_objc_msgSend_int(nsstr.Handle, new Selector("dataUsingEncoding:").Handle, 10)); return NSString.FromData(nsdata, NSStringEncoding.Unicode).ToString(); } Changing the above code to force Unicode rather than UTF8 results in the same thing. If I had to guess, it's happening in the NSString.ToString() method. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
