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());
decimal d=126; char c=(char)d; MessageBox.Show(c.ToString());
Forum Rules