El método DateTimeOffset.ToLocalTime se utiliza para convertir el objeto DateTimeOffset actual en un objeto DateTimeOffset que representa la hora local.
Sintaxis: public DateTimeOffset ToLocalTime();
Valor devuelto: este método devuelve un objeto que representa la fecha y la hora del objeto DateTimeOffset actual convertido a la hora local.
Los siguientes programas ilustran el uso del método DateTimeOffset.ToLocalTime() :
Ejemplo 1:
// C# program to demonstrate the // DateTimeOffset.ToLocalTime() // Method using System; using System.Globalization; class GFG { // Main Method public static void Main() { try { // creating object of DateTimeOffset DateTimeOffset offset = new DateTimeOffset(2007, 6, 1, 7, 55, 0, new TimeSpan(-5, 0, 0)); // Converts the current DateTimeOffset object // to a DateTimeOffset object that represents // the local time instance using the // ToLocalTime() method DateTimeOffset value = offset.ToLocalTime(); // Display the time Console.WriteLine("DateTimeOffset is {0}", value); } catch (ArgumentOutOfRangeException e) { Console.Write("Exception Thrown: "); Console.Write("{0}", e.GetType(), e.Message); } } }
Producción:
DateTimeOffset is 06/01/2007 12:55:00 +00:00
Ejemplo 2:
// C# program to demonstrate the // DateTimeOffset.ToLocalTime() // Method using System; using System.Globalization; class GFG { // Main Method public static void Main() { // creating object of DateTimeOffset DateTimeOffset offset = new DateTimeOffset(2027, 6, 1, 7, 55, 0, new TimeSpan(-5, 0, 0)); // Converts the current DateTimeOffset object // to a DateTimeOffset object that represents // the local time instance using the // ToLocalTime() method DateTimeOffset value = offset.ToLocalTime(); // Display the time Console.WriteLine("DateTimeOffset is {0}", value); } }
Producción:
DateTimeOffset is 06/01/2027 12:55:00 +00:00
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