📜  C#中的DateTime.ToFileTime()方法

📅  最后修改于: 2021-05-29 15:14:07             🧑  作者: Mango

此方法用于将当前DateTime对象的值转换为Windows文件时间。

下面的程序说明了DateTime.ToFileTime()方法的用法:

范例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);
        }
    }
}
输出:
Windows file time is 129383280150000000

示例2:对于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);
        }
    }
}
输出:
Exception Thrown: System.ArgumentOutOfRangeException

参考:

  • https://docs.microsoft.com/zh-cn/dotnet/api/system.datetime.tofiletime?view=netframework-4.7.2