Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

Char::ToLower Method (Char, CultureInfo^)

 

Converts the value of a specified Unicode character to its lowercase equivalent using specified culture-specific formatting information.

Namespace:   System
Assembly:  mscorlib (in mscorlib.dll)

public:
static wchar_t ToLower(
	wchar_t c,
	CultureInfo^ culture
)

Parameters

c
Type: System::Char

The Unicode character to convert.

culture
Type: System.Globalization::CultureInfo^

An object that supplies culture-specific casing rules.

Return Value

Type: System::Char

The lowercase equivalent of c, modified according to culture, or the unchanged value of c, if c is already lowercase or not alphabetic.

Exception Condition
ArgumentNullException

culture is null.

Use String::ToLower to convert a string to lowercase.

The following code example demonstrates ToLower.

using namespace System;
using namespace System::Globalization;

// for CultureInfo
void main()
{
   Console::WriteLine( Char::ToLower( 'A' ) ); // Output: "a"
}

.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Return to top
Show:
© 2017 Microsoft