Método DateTime.ToLongDateString() en C#

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

Sintaxis: string pública ToLongDateString();

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

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

Ejemplo 1:

// C# program to demonstrate the
// DateTime.ToLongDateString()
// Method
using System;
using System.Globalization;
  
class GFG {
  
    // Main Method
    public static void Main()
    {
  
        // creating object of DateTime
        DateTime date = new DateTime(2011, 1,
                                1, 4, 0, 15);
  
        // Converting the value of the 
        // current DateTime object to 
        // its equivalent long date 
        // string representation.
        // using ToLongDateString() method;
        string value = date.ToLongDateString();
  
        // Display the date
        Console.WriteLine("String representation"+
                        " of date is {0}", value);
    }
}
Producción:

String representation of date is Saturday, 01 January 2011

Ejemplo 2:

// C# program to demonstrate the
// DateTime.ToLongDateString()
// Method
using System;
using System.Globalization;
  
class GFG {
  
    // Main Method
    public static void Main()
    {
  
        // creating object of DateTime
        DateTime date = DateTime.Now;
  
        // Converting the value of the
        // current DateTime object to 
        // its equivalent long date 
        // string representation.
        // using ToLongDateString() method;
        string value = date.ToLongDateString();
  
        // Display the date
        Console.WriteLine("String representation "+
                          "of date is {0}", value);
    }
}
Producción:

String representation of date is Monday, 11 February 2019

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 *