Método DateTime.ToShortDateString() en C#

Este método se usa para convertir el valor del objeto DateTime actual a su representación de string de fecha corta equivalente.

Sintaxis: string pública ToShortDateString();

Valor de retorno: este método devuelve una string que contiene la representación de string de fecha corta del objeto DateTime actual.

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

Ejemplo 1:

// C# program to demonstrate the
// DateTime.ToShortDateString()
// Method
using System;
  
class GFG {
  
    // Main Method
    public static void Main()
    {
        try {
  
            // creating object of DateTime
            DateTime date = new DateTime(2010, 1,
                                    1, 4, 0, 15);
  
            // getting ShortTime from DateTime
            // using ToShortDateString() method;
            string value = date.ToShortDateString();
  
            // Display the ShortTime
            Console.WriteLine("date is {0}", value);
        }
  
        catch (FormatException e) 
        {
            Console.Write("Exception Thrown: ");
            Console.Write("{0}", e.GetType(), e.Message);
        }
    }
}
Producción:

date is 01/01/2010

Ejemplo 2:

// C# program to demonstrate the
// DateTime.ToShortDateString()
// 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));
  
        check(new DateTime(2010, 1, 5, 4, 0, 15));
    }
  
    public static void check(DateTime date)
    {
  
        // getting ShortTime from DateTime
        // using ToShortDateString() method;
        string value = date.ToShortDateString();
  
        // Display the date
        Console.WriteLine("date of {0} is "+
                        "{1}", date, value);
    }
}
Producción:

date of 01/03/2010 04:00:15 is 01/03/2010
date of 01/05/2010 04:00:15 is 01/05/2010
date of 01/05/2010 04:00:15 is 01/05/2010

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 *