Char.ToLower Method (Char)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Converts the value of a Unicode character to its lowercase equivalent.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- c
- Type: System.Char
A Unicode character.
Return Value
Type: System.CharThe lowercase equivalent of c, or the unchanged value of c, if c is already lowercase or not alphabetic.
Casing rules are obtained from the current culture.
Use String.ToLower to convert a string to lowercase.
Show: