Método DateTime.GetTypeCode() en C#

Este método se utiliza para devolver el TypeCode para el tipo de valor DateTime.

Sintaxis: público TypeCode GetTypeCode();

Valor devuelto: este método devuelve la constante enumerada, DateTime.

Los siguientes programas ilustran el uso del método DateTime.GetTypeCode()

Ejemplo 1:

// C# program to demonstrate the
// DateTime.GetTypeCode()
// Method
using System;
  
class GFG {
  
    // Main Method
    public static void Main()
    {
  
        // creating object of DateTime
        DateTime date = new DateTime(2010, 1,
                                1, 4, 0, 15);
  
        // getting Typecode of date
        // using GetTypeCode() method;
        TypeCode value = date.GetTypeCode();
  
        // Display the hashcode
        Console.WriteLine("TypeCode is {0}", value);
    }
}
Producción:

TypeCode is DateTime

Ejemplo 2:

// C# program to demonstrate the
// DateTime.GetTypeCode()
// Method
using System;
  
class GFG {
  
    // Main Method
    public static void Main()
    {
        // calling check() method
        check(new DateTime(2010, 1,
                     3, 4, 0, 15));
  
        check(new DateTime(2010, 1,
                     5, 4, 0, 15));
    }
  
    public static void check(DateTime date)
    {
  
        // getting TypeCodeCode of date
        // using GetTypeCode() method;
        TypeCode value = date.GetTypeCode();
  
        // Display the ShortTime
        Console.WriteLine("TypeCode of {0} is {1}",
                                      date, value);
    }
}
Producción:

TypeCode of 01/03/2010 04:00:15 is DateTime
TypeCode of 01/05/2010 04:00:15 is DateTime

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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *