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, CultureInfo)

Converts a specified Char to lowercase for the specified culture.

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

Parameters

c
The character to be converted.
culture
The local specifications used to convert the character.

Return Value

The lowercase version of the character according to the specified culture.

Exceptions

Exception Type Condition
ArgumentNullException if the culture is null.

Remarks

The ToLower method converts this instance of the character to the specified culture (see CultureInfo). It has not been fully implemented.

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