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!

String.ToUpper (CultureInfo)

Creates a copy of this string in upper case with the specified CultureInfo inforamtion.

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

Parameters

culture
Sets the locale.

Return Value

A new string in upper case.

Exceptions

Exception Type Condition
ArgumentNullException If the specified culture is not valid.

Remarks

The ToUpper method returns a string in lower case with the specified locale set by the information provided by CultureInfo.

See Also

String Class | String Members | System Namespace | String.ToUpper Overload List