Método DateTime.ToFileTime() en C#

Este método se utiliza para convertir el valor del objeto DateTime actual en una hora de archivo de Windows.

Sintaxis: public long ToFileTime();

Valor devuelto: este método devuelve el valor del objeto DateTime actual expresado como la hora de un archivo de Windows.

Excepción: este método generará ArgumentOutOfRangeException si la hora del archivo resultante representa una fecha y hora anteriores a las 12:00 de la medianoche del 1 de enero de 1601 CE UTC.

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

Ejemplo 1:

// C# program to demonstrate the
// DateTime.ToFileTime()
// Method
using System;
using System.Globalization;
  
class GFG {
  
    // Main Method
    public static void Main()
    {
        try {
  
            // creating object of DateTime
            DateTime date = new DateTime(2011, 1,
                                    1, 4, 0, 15);
  
            // converting current DateTime 
            // object to a Windows file time.
            // using ToFileTime() method;
            long value = date.ToFileTime();
  
            // Display the TimeSpan
            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 129383280150000000

Ejemplo 2: para ArgumentOutOfRangeException

// C# program to demonstrate the
// DateTime.ToFileTime()
// Method
using System;
using System.Globalization;
  
class GFG {
  
    // Main Method
    public static void Main()
    {
        try {
  
            // creating object of DateTime
            DateTime date = new DateTime(1600, 1,
                                    1, 4, 0, 15);
  
            // converting current DateTime
            // object to a Windows file time.
            // using ToFileTime() method;
            long value = date.ToFileTime();
  
            // Display the TimeSpan
            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 *