If you just want to display Chinese characters on the console use.
System.Console.WriteLine(s);
This works because c# treats all strings as UTF16.
I think System.Console.Out.WriteLine(s) uses a Stream that probably utilises
the default system encoding which in your case doesn't support Chines
hi,
how to add dictionary to spinner ...i created one
dictionary...now i have to populate spinner with that dictionary
just like array adapter...
/* List courses = new List();
courses.AddRange(new string[]{"Chemistry", "Physics",
"Biology","Maths", "German"});
Hi,
like this how can i add dictionary to spinner to populate spinner with
dictionary values...i created dictionary like this:
Dictionary course = new Dictionary();
course.Add("MCA", 101);
course.Add("MBA", 202);
course.Add("MSc", 303);
course
On Mar 3, 2013, at 10:09 PM, xin Lee wrote:
> I am try to use System.Console.Out.WriteLine() to output chinese.
>
> String s = "中文字"; //this is some chinese
> System.Console.Out.WriteLine(s);
>
> But I ony see ??.
This appears to be an IDE bug. If you look at `adb logcat`[0], things app
On Mar 4, 2013, at 1:30 AM, blorecrafter wrote:
> Hi Jon
> Can there be any alternative solution for now. Like can i uninstall M4A in
> one login and install under another login. Please help...
Are you using different Xamarin logins for each of your accounts?
I don't think that this is a scenari
ha,yes...i have to populate the spinner with the contents of the
dictionary(ex: courses shud populate in the spinner for the user
selection)...
--
View this message in context:
http://mono-for-android.1047100.n5.nabble.com/Enhancement-code-for-Spinner-tp5712950p5712989.html
Sent from the Mo