T Tom Shelton Oct 28, 2003 #2 whats that equal function vb chr() to c#? Thanks balakumar Click to expand... char c = (char) 65; Console.WriteLine(c);
whats that equal function vb chr() to c#? Thanks balakumar Click to expand... char c = (char) 65; Console.WriteLine(c);
B Brian L. Gorman Oct 29, 2003 #3 In order to get convert a number to a character in c# you need use the convert: Convert.ToChar(myAsciiValue); Good luck Brian L. Gorman
In order to get convert a number to a character in c# you need use the convert: Convert.ToChar(myAsciiValue); Good luck Brian L. Gorman