Determines whether the specified character is lowercase.
[Visual Basic] Public Shared Function IsLower( _ ByVal c As Char _ ) As Boolean [C#] public static bool IsLower( char c ); [C++] public: static bool IsLower( __wchar_t c ); [JScript] public static function IsLower( c : Char ) : Boolean;
true if the character is a lowercase character, otherwise false.
Exception Type | Condition |
---|---|
ArgumentException | if it cannot get the character type information. |
The IsLower method compares the current character instance with IsLower and returns a true or false indication whether the character that was checked is lowercase. (See CharacterInfo.)