Tag: LowerCase
How to find if the Character is a UpperCase or LowerCase in C# ?
You can find if the Character is a UpperCase or LowerCase in C# with the following methods Char.IsLower Char.IsUpper How to find if the Character is a UpperCase or LowerCase in C# ? The Char.IsLower method will return true if the specified character is a lower case character. The Char.IsUpper method will return true if the specified character is a upper case character.