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!

Char.ToLower (Char)

Converts a Char to lowercase with the current thread culture.

[Visual Basic]
Overloads Public Shared Function ToLower( _
   ByVal c As Char _
) As Char
[C#]
public static char ToLower(
   char c
);
[C++]
public: static __wchar_t ToLower(
   __wchar_t c
);
[JScript]
public static function ToLower(
   c : Char
) : Char;

Parameters

c
A Char value.

Return Value

The lowercase version of the character.

Remarks

The ToLower method converts this instance of the character to the current thread culture (see CultureInfo).

It is a wrapper for Char.ToLower and converts the character to its lower case equivalent. If the character is already a lower case character or is not alphabetic, then nothing happens.

See Also

Char Structure | Char Members | System Namespace | Char.ToLower Overload List