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;
The lowercase version of the character according to the specified culture.
Exception Type | Condition |
---|---|
ArgumentNullException | if the culture is null. |
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.
Char Structure | Char Members | System Namespace | Char.ToLower Overload List