tehon3299
Centurion
How can I print the letter associated with an ASCII code in VB.NET? I want to print out the alphabet with a FOR loop and use 65 for A to start and run til Z or 90. How do I convert the ascii code to character?
Dim c As Char = Convert.ToChar(65)