Método DateTimeOffset.ToFileTime() en C#

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);
        }
    }
}
Producción:

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);
        }
    }
}
Producción:

Exception Thrown: System.ArgumentOutOfRangeException

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 *