El método Int16.GetTypeCode se usa para obtener el TypeCode para el tipo de valor Int16.
Sintaxis: público TypeCode GetTypeCode();
Valor devuelto: este método devuelve la constante enumerada Int16.
Los siguientes programas ilustran el uso del método discutido anteriormente:
Ejemplo 1:
// C# program to illustrate the // Int16.GetTypeCode() Method using System; class GFG { // Main Method public static void Main() { // Taking short value // i.e. Int16 short s1 = 123; // Getting the typecode for Int16 // using GetTypeCode() method TypeCode result = s1.GetTypeCode(); // Display the TypeCode Console.WriteLine("TypeCode for Int16 is: {0}", result); } }
Producción:
TypeCode for Int16 is: Int16
Ejemplo 2:
// C# program to illustrate the // Int16.GetTypeCode() Method using System; class GFG { // Main Method public static void Main() { // using result() Method result(Int16.MinValue); result(Int16.MaxValue); } // result() method public static void result(short val) { // using GetTypeCode() method TypeCode code = val.GetTypeCode(); // Display the TypeCode Console.WriteLine("TypeCode for {0} is {1}", val, code); } }
Producción:
TypeCode for -32768 is Int16 TypeCode for 32767 is Int16
Referencia:
Publicación traducida automáticamente
Artículo escrito por Kirti_Mangal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA