I want to create an application where user would input a number and the program will throw back a character to the user.
Edit: How about vice versa, changing a ascii
I was googling about how to convert an int to char, that got me here. But my question was to convert for example int of 6 to char of '6'. For those who came here like me, this is how to do it:
int num = 6; num.ToString().ToCharArray()[0];