El método UInt32.GetTypeCode se usa para obtener el código de tipo para el tipo de valor UInt32.
Sintaxis: público TypeCode GetTypeCode();
Valor devuelto: este método devuelve la constante enumerada UInt32.
Los siguientes programas ilustran el uso del método discutido anteriormente:
Ejemplo 1:
// C# program to illustrate the // UInt32.GetTypeCode() Method using System; class GFG { // Main Method public static void Main() { // Taking 32-bit unsigned integer // i.e. UInt32 uint s1 = 223; // Getting the typecode // using GetTypeCode() method TypeCode result = s1.GetTypeCode(); // Display the TypeCode Console.WriteLine("TypeCode for UInt32 is: {0}", result); } }
Producción:
TypeCode for UInt32 is: UInt32
Ejemplo 2:
// C# program to illustrate the // UInt32.GetTypeCode() Method using System; class GFG { // Main Method public static void Main() { // using result() Method result(UInt32.MinValue); result(UInt32.MaxValue); } // result() method public static void result(uint val) { // using GetTypeCode() method TypeCode code = val.GetTypeCode(); // Display the TypeCode Console.WriteLine("TypeCode for {0} is {1}", val, code); } }
Producción:
TypeCode for 0 is UInt32 TypeCode for 4294967295 is UInt32
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