F
farseer
if i wanted to check if a virtual key is in the range of 'a-z' or 'A-Z'
is there an easy way to do this in C#?
is there an easy way to do this in C#?
farseer said:if i wanted to check if a virtual key is in the range of 'a-z' or 'A-Z'
is there an easy way to do this in C#?
farseer said:a thanks...haven't tried it yet, but i am guessing from what you say,
this should return true:
int vkKey = 65;
bool vkIsLetter = Char.IsLetter( (char) vkKey )