C# | Char.ToLowerInvariant(Char) Method
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:
// C# program to demonstrate // Char.ToLowerInvariant() // Method using System; class GFG { // Main Method public static void Main() { // calling get() Method get ( 'A' ); get ( 'a' ); get ( 'B' ); get ( 'b' ); } // Defining get() method public static void get ( char c) { // getting Unicode character // using ToLowerInvariant() Method char val = Char.ToLowerInvariant(c); // display the char value Console.WriteLine( "The lowercase equivalent" + " of the {0} is {1}" , c, val); } } |
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:
// C# program to demonstrate // Char.ToLowerInvariant() // Method using System; class GFG { // Main Method public static void Main() { // declaring and intializing char variable char c = 'A' ; // getting Unicode character // using ToLowerInvariant() Method char val = Char.ToLowerInvariant(c); // display the char value Console.WriteLine( "The lowercase equivalent" + " of the {0} is {1}" , c, val); } } |
The lowercase equivalent of the A is a
Reference:
Recommended Posts:
- Difference between Method Overriding and Method Hiding in C#
- Decimal.Add() Method in C#
- C# | Clone() Method
- C# | Math.Pow() Method
- C# | Math.Exp() Method
- C# | Remove() Method
- C# | EndsWith() Method
- C# | PadRight() Method
- DateTimeOffset.Add() Method in C#
- C# | Uri.IsHexEncoding() Method
- Anonymous Method in C#
- C# | Replace() Method
- C# | Insert() Method
- C# | Join Method | Set - 2
- C# | IsNullOrWhiteSpace() Method
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.