Char::ToUpper Method (Char, CultureInfo^)
Converts the value of a specified Unicode character to its uppercase equivalent using specified culture-specific formatting information.
Assembly: mscorlib (in mscorlib.dll)
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::CharThe 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.
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0