Say supplying 65 and a string picking up A
or 126 and picking up ~
How is this easily done in c#?
Printable View
Say supplying 65 and a string picking up A
or 126 and picking up ~
How is this easily done in c#?
Dead easy , you just need to cast the integral value to char type .
PHP Code:decimal d=126;
char c=(char)d;
MessageBox.Show(c.ToString());