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.ToLower (CultureInfo)

Creates a copy of this string in lower case with the specified CultureInfo information.

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

Parameters

culture
Sets the locale.

Return Value

A new string in lower case.

Exceptions

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

Remarks

The ToLower 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.ToLower Overload List