Solution 1:
(char)myint;
for example:
Console.WriteLine("(char)122 is {0}", (char)122);
yields:
(char)122 is z
Solution 2:
int i = 65;
char c = Convert.ToChar(i);
(char)myint;
for example:
Console.WriteLine("(char)122 is {0}", (char)122);
yields:
(char)122 is z
int i = 65;
char c = Convert.ToChar(i);