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.ToUpper (Char)

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;

Parameters

c
The Char value to convert.

Return Value

The uppercase version of c.

Remarks

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.

See Also

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