This method is used to converts the value of a Unicode character to its lowercase equivalent using the casing rules of the invariant culture.
Syntax:
public static char ToLowerInvariant (char c);
Here, c is the Unicode character to convert.
Return Value: This method returns the lowercase equivalent of the c parameter, or the unchanged value of c, if c is already lowercase or not alphabetic.
Below programs illustrate the use of Char.ToLowerInvariant(Char) Method:
Example 1:
using System;
class GFG {
public static void Main()
{
get ( 'A' );
get ( 'a' );
get ( 'B' );
get ( 'b' );
}
public static void get ( char c)
{
char val = Char.ToLowerInvariant(c);
Console.WriteLine( "The lowercase equivalent" +
" of the {0} is {1}" , c, val);
}
}
|
Output:
The lowercase equivalent of the A is a
The lowercase equivalent of the a is a
The lowercase equivalent of the B is b
The lowercase equivalent of the b is b
Example 2:
using System;
class GFG {
public static void Main()
{
char c = 'A' ;
char val = Char.ToLowerInvariant(c);
Console.WriteLine( "The lowercase equivalent" +
" of the {0} is {1}" , c, val);
}
}
|
Output:
The lowercase equivalent of the A is a
Reference:
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
19 Dec, 2019
Like Article
Save Article