El método GetTypeCode() se utiliza para obtener el TypeCode de la string especificada.
Aquí la enumeración TypeCode representa un tipo específico de objeto. En TypeCode, cada tipo de datos está representado por un número específico, como String está representado por 18, Int32 está representado por 9, etc.
Sintaxis:
public TypeCode GetTypeCode ();
Valor devuelto: este método devuelve una constante enumerada.
A continuación se dan algunos ejemplos para entender la implementación de una mejor manera:
Ejemplo 1:
// C# program to illustrate the // GetTypeCode() Method using System; class GFG { // Main method public static void Main() { // variables string str1 = "Geeksforgeeks"; int a = 12; // get the TypeCode by // using GetTypeCode() method Console.WriteLine("The TypeCode for {0}': {1}", str1, str1.GetTypeCode()); Console.WriteLine("The TypeCode for '{0}': {1}", a, a.GetTypeCode()); } }
Producción:
The TypeCode for Geeksforgeeks': String The TypeCode for '12': Int32
Ejemplo 2:
// C# program to illustrate the // GetTypeCode() Method using System; class GFG { // Main method public static void Main() { // given string String str1 = "Geeks"; // get the TypeCode of the given String // using GetTypeCode() method TypeCode g = str1.GetTypeCode(); Console.WriteLine("TypeCode for '{0}': {1}, Which means it represents a {2}.", str1, g.ToString("D"), g.ToString("F")); } }
Producción:
TypeCode for 'Geeks': 18, Which means it represents a String.
Referencia:
Publicación traducida automáticamente
Artículo escrito por ankita_saini y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA