Este método se usa para convertir el valor de un carácter Unicode a su equivalente en minúsculas usando las reglas de mayúsculas y minúsculas de la referencia cultural invariable.
Sintaxis:
public static char ToLowerInvariant (char c);
Aquí, c es el carácter Unicode para convertir.
Valor devuelto: este método devuelve el equivalente en minúsculas del parámetro c , o el valor sin cambios de c , si c ya está en minúsculas o no es alfabético.
Los siguientes programas ilustran el uso del método Char.ToLowerInvariant(Char) :
Ejemplo 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); } }
Producción:
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
Ejemplo 2:
// C# program to demonstrate // Char.ToLowerInvariant() // Method using System; class GFG { // Main Method public static void Main() { // declaring and initializing 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); } }
Producción:
The lowercase equivalent of the A is a
Referencia:
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA