find out whether character is lowercase or uppercase
Published: 31. October 2011 | Updated: 31. October 2011License: Microsoft Public License (MS-PL)
Categories: Framework » Strings
Tags: Basics C# Text
bool isUpperCase = char.IsUpper('A'); bool isLowerCase = char.IsLower('g');
| Send us feedback about this snippet » |





