How to

find out whether character is lowercase or uppercase

Published: 31. October 2011 | Updated: 31. October 2011
License: Microsoft Public License (MS-PL)
Categories: Framework » Strings
Tags: Basics C# Text
Was this snippet helpful for you? YESYES / NONO
bool isUpperCase = char.IsUpper('A');
bool isLowerCase = char.IsLower('g');
Send us feedback about this snippet »



Related Snippets: