I need some Chinese language in the form, but running Linux with Mono fails. Any tips? Example:
// works OK in windows and Linux same text.
Console.WriteLine( "Test 中国 的" );
// works OK in windows fails in Linux (renders "Test [][][][]")
MessageBox.Show("Test 中国 的");
// works OK in windows fails in Linux (renders "Test [][][][]")
Textbox1.Text="Test 中国 的"
source
share