Este método se utiliza para devolver el código de tipo para el tipo de valor Char.
Sintaxis:
public TypeCode GetTypeCode ();
Valor devuelto: este método devuelve la constante enumerada, Char.
Los siguientes programas ilustran el uso del método Char.GetTypeCode() :
Ejemplo 1:
csharp
// C# program to demonstrate // Char.GetTypeCode() Method using System; class GFG { // Main Method public static void Main() { // Declaring val1 and val2 char val1; bool val2; // initializing the // val1 and val2 val1 = 'A'; val2 = true; // getting TypeCode // using GetTypeCode() method TypeCode t1 = val1.GetTypeCode(); TypeCode t2 = val2.GetTypeCode(); // Display TypeCode Console.WriteLine("TypeCode of val1 is {0}", t1); Console.WriteLine("TypeCode of val2 is {0}", t2); } }
Producción:
TypeCode of val1 is Char TypeCode of val2 is Boolean
Ejemplo 2:
csharp
// C# program to demonstrate // Char.GetTypeCode() Method using System; class GFG { // Main Method public static void Main() { // Declaring val1 and val2 char val1; float val2; // initializing the // val1 and val2 val1 = 'a'; val2 = 20f; // calling get() method get(val1); get(val2); } // Defining the get() method public static void get(char val) { // getting TypeCode // using GetTypeCode() method TypeCode t = val.GetTypeCode(); // Display the TypeCode Console.WriteLine("TypeCode of {0} is {1}", val, t); } public static void get(float val) { // getting TypeCode // using GetTypeCode() method TypeCode t = val.GetTypeCode(); // Display the TypeCode Console.WriteLine("TypeCode of {0} is {1}", val, t); } }
Producción:
TypeCode of a is Char TypeCode of 20 is Single
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