Find the next letter

Equis

Member
Joined
Sep 1, 2006
Messages
9
Programming Experience
Beginner
Hello

If I has a letter A, how with code do I find out the next letter is B?
like 1 + 1 = 2 except I need A + 1 = B


Thanks
 
Convert a Char to its Unicode value with Convert.ToInt32. Convert a Unicode value to the corresponding Char with Convert.ToChar. A Unicode value is an Integer, so you can perform integer arithmetic on it.
 
Back
Top