What is the best way to convert an Int value to the corresponding Char in Utf16, given that the Int is in the range of valid values?
(char)myint;
for example:
Console.WriteLine("(char)122 is {0}", (char)122);
yields:
(char)122 is z
2.1m questions
2.1m answers
60 comments
57.0k users