| Okay, I am guilty ;). I found the "C# way", I forgot to check the char to see if it offers some static methods to check if a character is lower case. IT DOES :). I ovelooked it... Here is how will you check if a character is lower case in "C# style": char.IsLower(c); Furthermore the char type offers more useful methods as : .IsUpper(char c) ;). IsNumber, IsPunctuation and so on, so I will stick to it for now. Sorry for misleading you (if I did :) |
No comments:
Post a Comment