El método Type.GetTypeCode() se utiliza para obtener el código de tipo subyacente del tipo especificado.
Sintaxis: TypeCode estático público GetTypeCode (tipo de tipo);
Aquí, toma el tipo cuyo código de tipo subyacente se va a obtener.Valor de retorno: este método devuelve el código del tipo subyacente o Vacío si el tipo es nulo.
Los siguientes programas ilustran el uso del método Type.GetTypeCode() :
Ejemplo 1:
// C# program to demonstrate the // Type.GetTypeCode() Method using System; using System.Globalization; using System.Reflection; class GFG { // Main Method public static void Main() { // creating and initializing object Type Type type = typeof(int); // Getting the TypeCode TypeCode code = Type.GetTypeCode(type); // Display the Result Console.WriteLine("TypeCode is {0}", code); } }
Producción:
TypeCode is Int32
Ejemplo 2:
// C# program to demonstrate the // Type.GetTypeCode() Method using System; using System.Globalization; using System.Reflection; class GFG { // Main Method public static void Main() { // Calling get() Method get(typeof(int)); get(typeof(decimal)); get(typeof(double)); get(typeof(short)); get(typeof(string)); } // defining get Method public static void get(Type type) { // Getting Typecode TypeCode code = Type.GetTypeCode(type); // Display the Result Console.WriteLine("TypeCode of {1} is {0}", code, type); } }
Producción:
TypeCode of System.Int32 is Int32 TypeCode of System.Decimal is Decimal TypeCode of System.Double is Double TypeCode of System.Int16 is Int16 TypeCode of System.String is String
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