El método DateTimeOffset.ToFileTime se utiliza para convertir el valor del objeto DateTimeOffset actual en una hora de archivo de Windows.
Sintaxis: public long ToFileTime();
Valor devuelto: este método devuelve el valor del objeto DateTimeOffset actual, expresado como una hora de archivo de Windows.
Excepción: este método proporcionará ArgumentOutOfRangeException si la hora del archivo resultante representaría una fecha y hora antes de la medianoche del 1 de enero de 1601, hora universal coordinada (UTC) de la CE.
Los siguientes programas ilustran el uso del método DateTimeOffset.ToFileTime() :
Ejemplo 1:
// C# program to demonstrate the // DateTimeOffset.ToFileTime() // 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 value of the current // DateTimeOffset object to a Windows file time. // instance using ToFileTime() method long value = offset.ToFileTime(); // Display the time Console.WriteLine("Windows file time is {0}", value); } catch (ArgumentOutOfRangeException e) { Console.Write("Exception Thrown: "); Console.Write("{0}", e.GetType(), e.Message); } } }
Windows file time is 128251761000000000
Ejemplo 2: para ArgumentOutOfRangeException
// C# program to demonstrate the // DateTimeOffset.ToFileTime() // Method using System; using System.Globalization; class GFG { // Main Method public static void Main() { try { // creating object of DateTimeOffset DateTimeOffset offset = new DateTimeOffset(1600, 6, 1, 7, 55, 0, new TimeSpan(-5, 0, 0)); // Converts the value of the current // DateTimeOffset object to a Windows file time. // instance using ToFileTime() method long value = offset.ToFileTime(); // Display the time Console.WriteLine("Windows file time is {0}", value); } catch (ArgumentOutOfRangeException e) { Console.Write("Exception Thrown: "); Console.Write("{0}", e.GetType(), e.Message); } } }
Exception Thrown: System.ArgumentOutOfRangeException
Referencia:
- https://docs.microsoft.com/en-us/dotnet/api/system.datetimeoffset.tofiletime?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