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!

TextInfo.ToUpper (Char)

Returns the mapping of the specified character to upper case.

[Visual Basic]
Overloads Overridable Public Function ToUpper( _
   ByVal c As Char _
) As Char
[C#]
public virtual char ToUpper(
   char c
);
[C++]
public: virtual __wchar_t ToUpper(
   __wchar_t c
);
[JScript]
public function ToUpper(
   c : Char
) : Char;

Parameters

c
The character to map to upper case.

Return Value

Returns the mapping of the specified character to upper case.

Remarks

Certain locales have different casing semantics from the file systems in Win32. The linguistic flag controls whether the conversion is done using the file system rules or the linguistic rules.

See Also

TextInfo Class | TextInfo Members | System.Globalization Namespace | TextInfo.ToUpper Overload List