Converts the value of a Unicode character to its lowercase equivalent using the casing rules of the invariant culture.
Namespace:
System
Assembly:
mscorlib (in mscorlib.dll)
Visual Basic (Declaration)
Public Shared Function ToLowerInvariant ( _
c As Char _
) As Char
Dim c As Char
Dim returnValue As Char
returnValue = Char.ToLowerInvariant(c)
public static char ToLowerInvariant(
char c
)
public:
static wchar_t ToLowerInvariant(
wchar_t c
)
public static function ToLowerInvariant(
c : char
) : char
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, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC, Xbox 360, Zune
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
.NET Framework
Supported in: 3.5, 3.0, 2.0
.NET Compact Framework
Supported in: 3.5
XNA Framework
Supported in: 3.0, 2.0, 1.0
Reference