Char.ToLower Method (Char, CultureInfo)
.NET Framework 2.0
Converts the value of a specified Unicode character to its lowercase equivalent using specified culture-specific formatting information.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Assembly: mscorlib (in mscorlib.dll)
public static char ToLower ( char c, CultureInfo culture )
public static function ToLower ( c : char, culture : CultureInfo ) : char
Parameters
- c
A Unicode character.
- culture
A System.Globalization.CultureInfo object that supplies culture-specific casing rules, or a null reference (Nothing in Visual Basic).
Return Value
The lowercase equivalent of c, modified according to culture, or the unchanged value of c, if c is already lowercase or not alphabetic.Use String.ToLower to convert a string to lowercase.
The following code example demonstrates ToLower.
using System; using System.Globalization; // for CultureInfo public class ToLowerSample { public static void Main() { Console.WriteLine(Char.ToLower('A')); // Output: "a" } }
import System.*;
import System.Globalization.*; // for CultureInfo
public class ToLowerSample
{
public static void main(String[] args)
{
Console.WriteLine(Char.ToLower('A')); // Output: "a"
} //main
} //ToLowerSample
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.