Este método se usa para convertir el valor de un carácter Unicode a su equivalente en mayúsculas usando las reglas de mayúsculas y minúsculas de la referencia cultural invariable.
Sintaxis:
public static char ToUpperInvariant (char c);
Aquí, c es el carácter Unicode para convertir.
Valor devuelto: este método devuelve el equivalente en mayúsculas del parámetro c , o el valor sin cambios de c , si c ya está en mayúsculas o no es alfabético.
Los siguientes programas ilustran el uso del método Char.ToUpperInvariant(Char) :
Ejemplo 1:
csharp
// C# program to demonstrate // Char.ToUpperInvariant() // Method using System; class GFG { // Main Method public static void Main() { // calling get() Method get('A'); get('a'); get('B'); get('b'); get('-'); } // Defining get() method public static void get(char c) { // getting Unicode character // using ToUpperInvariant() Method char val = Char.ToUpperInvariant(c); // display the char value Console.WriteLine("The uppercase equivalent"+ " of the {0} is {1}", c, val); } }
Producción:
The uppercase equivalent of the A is A The uppercase equivalent of the a is A The uppercase equivalent of the B is B The uppercase equivalent of the b is B The uppercase equivalent of the - is -
Ejemplo 2:
csharp
// C# program to demonstrate // Char.ToUpperInvariant() // Method using System; class GFG { // Main Method public static void Main() { // declaring and initializing char variable char c = 'a'; // getting Unicode character // using ToUpperInvariant() Method char val = Char.ToUpperInvariant(c); // display the char value Console.WriteLine("The Uppercase equivalent"+ " of the {0} is {1}", c, val); } }
Producción:
The Uppercase 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