Converts a specified Char to uppercase with the default culture.
[Visual Basic] Overloads Public Shared Function ToUpper( _ ByVal c As Char _ ) As Char [C#] public static char ToUpper( char c ); [C++] public: static __wchar_t ToUpper( __wchar_t c ); [JScript] public static function ToUpper( c : Char ) : Char;
The uppercase version of c.
The ToUpper method converts a Char to upper case with the default cultures (see CultureInfo for more infomation on cultures).
It is a wrapper for Char.ToUpper and converts the character to its upper case equivalent. If the character is already a upper case character or is not alphabetic, then nothing happens.
Char Structure | Char Members | System Namespace | Char.ToUpper Overload List