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
This works in my code.
string asciichar = (Convert.ToChar(65)).ToString();
Return: asciichar = 'A';
asciichar = 'A';