Displaying Greek Characters in a Label (Visual Studio C#)
I have an application that uses google translate to translate words. I need to display Greek words in a label .... is it this possible to show g开发者_JAVA百科reek characters?
You can represent a Unicode character in C# as char c = '\u03BB'
, where 03BB is the code point you want in hex.
精彩评论