This documentation is archived and is not being maintained.
Char::ToLowerInvariant Method
Visual Studio 2010
Converts the value of a Unicode character to its lowercase equivalent using the casing rules of the invariant culture.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- c
- Type: System::Char
The Unicode character to convert.
Return Value
Type: System::CharThe lowercase equivalent of the c parameter, or the unchanged value of c, if c is already lowercase or not alphabetic.
If your application is unaffected by the current culture and depends on the case of a character changing in a predictable way, then use the ToLowerInvariant method. The ToLowerInvariant method is equivalent to ToLower(Char, CultureInfo.InvariantCulture).
Use String::ToLowerInvariant to convert a string to lowercase.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: