Tagged Questions
4
votes
3answers
2k views
Displaying a unicode text in C#
My App displays English, Japanese and Chinese characters on a TextBox and a LinkLabel.
Currently, I check if there are unicode characters and change the font to MS Mincho or else leave it in Tahoma.
...
0
votes
3answers
127 views
UnicodeString w/ String Literals vs Hex Values
Is there any conceivable reason why I would see different results using unicode string literals versus the actual hex value for the UChar.
UnicodeString s1(0x0040); // @ sign
UnicodeString ...