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 (String)

Returns the mapping of the specified string to upper case.

[Visual Basic]
Overloads Overridable Public Function ToUpper( _
   ByVal str As String _
) As String
[C#]
public virtual string ToUpper(
   string str
);
[C++]
public: virtual String* ToUpper(
   String* str
);
[JScript]
public function ToUpper(
   str : String
) : String;

Parameters

str
The string to map to upper case.

Return Value

Returns the mapping of the specified string to upper case.

Remarks

Certain locales have different casing semantics from the file systems in Win32.

Note that the returned string may differ in length from the input string.

See Also

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