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;
The lowercase version of the character.
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.
Char Structure | Char Members | System Namespace | Char.ToLower Overload List