Este método se utiliza para convertir el valor del objeto DateTime actual en su representación de string equivalente de tiempo prolongado.
Sintaxis: string pública ToLongTimeString();
Valor devuelto: este método devuelve una string que contiene la representación de string de larga duración del objeto DateTime actual.
Los siguientes programas ilustran el uso del método DateTime.ToLongTimeString() :
Ejemplo 1:
// C# program to demonstrate the // DateTime.ToLongTimeString() // 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 time // string representation. // using ToLongTimeString() method; string value = date.ToLongTimeString(); // Display the time Console.WriteLine("String representation of"+ " time is {0}", value); } }
Producción:
String representation of time is 04:00:15
Ejemplo 2:
// C# program to demonstrate the // DateTime.ToLongTimeString() // 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 time // string representation. // using ToLongTimeString() method; string value = date.ToLongTimeString(); // Display the time Console.WriteLine("String representation "+ "of time is {0}", value); } }
Producción:
String representation of time is 05:30:08
Referencia:
- https://docs.microsoft.com/en-us/dotnet/api/system.datetime.tolongtimestring?view=netframework-4.7.2
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA