Este método se utiliza para convertir el valor del objeto DateTime actual en una hora de archivo de Windows.
Sintaxis: public long ToFileTimeUtc();
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.ToFileTimeUtc() :
Ejemplo 1:
// C# program to demonstrate the // DateTime.ToFileTimeUtc() // 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 ToFileTimeUtc() method; long value = date.ToFileTimeUtc(); // Display the TimeSpan Console.WriteLine("Windows file time(UTC) "+ "is {0}", value); } catch (ArgumentOutOfRangeException e) { Console.Write("Exception Thrown: "); Console.Write("{0}", e.GetType(), e.Message); } } }
Windows file time(UTC) is 129383280150000000
Ejemplo 2: para ArgumentOutOfRangeException
// C# program to demonstrate the // DateTime.ToFileTimeUtc() // 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 ToFileTimeUtc() method; long value = date.ToFileTimeUtc(); // Display the TimeSpan Console.WriteLine("Windows file time(UTC) is "+ "{0}", value); } catch (ArgumentOutOfRangeException e) { Console.Write("Exception Thrown: "); Console.Write("{0}", e.GetType(), e.Message); } } }
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