NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

CharacterInfo.IsLower

Determines whether the specified character is a lowercase character.

[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;

Parameters

c
The specified character.

Return Value

true if c is a lowercase character; otherwise, false.

See Also

CharacterInfo Class | CharacterInfo Members | System.Globalization Namespace