Software Development Network>> Visual C#>> int to ascii
You can always cast an int to a char:
int n = 65;
char c = (char) n;
HTH--mc
int a = 65;
char converted = Convert.ToChar(a);
I hope it will work! Cheers ;-)
int to ascii
XBTester
You can always cast an int to a char:
int n = 65;
char c = (char) n;
HTH
--mc
Swamy Kanakala
int a = 65;
char converted = Convert.ToChar(a);
I hope it will work! Cheers ;-)