Char::ToUpper Method (Char, CultureInfo^)

 

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

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

public:
static wchar_t ToUpper(
	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 uppercase equivalent of c, modified according to culture, or the unchanged value of c if c is already uppercase, has no uppercase equivalent, or is not alphabetic.

Exception Condition
ArgumentNullException

culture is null.

Use String::ToUpper to convert a string to uppercase.

The following example converts each character in an array to its uppercase equivalent for the en-US culture, the invariant culture, and the tr-TR culture. In this example, the uppercase equivalent of each lowercase letter is identical for all cultures except for one case. The lowercase "i" character (U+0069) converts to "I" (U+0049) in the en-US and invariant cultures, but to "İ" (U+0130) in the tr-TR culture.

No code example is currently available or this language may not be supported.

.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: