How can I get the ascii character of a given ascii code.
e.g. I\'m looking for a method that given the code 65 would return \"A\".
Thanks
Simply Try this:
int n = Convert.ToInt32(Console.ReadLine()); Console.WriteLine("data is: {0}", Convert.ToChar(n));