DateTime.ToFileTimeUtc() วิธีการใน C # ใช้เพื่อแปลงค่าของวัตถุ DateTime ปัจจุบันเป็นเวลาของไฟล์ Windows
ไวยากรณ์
ต่อไปนี้เป็นไวยากรณ์ -
public long ToFileTimeUtc ();
ตัวอย่าง
ให้เราดูตัวอย่างการใช้เมธอด DateTime.ToFileTimeUtc() -
using System; public class Demo { public static void Main() { DateTime d = new DateTime(2019, 05, 10, 6, 10, 25); Console.WriteLine("Date = {0}", d); long res = d.ToFileTimeUtc(); Console.WriteLine("Windows file time (Utc) = {0}", res); } }
ผลลัพธ์
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -
Date = 5/10/2019 6:10:25 AM Windows file time (Utc) = 132019422250000000
ตัวอย่าง
ให้เราดูตัวอย่างอื่นเพื่อใช้เมธอด DateTime.ToFileTimeUtc() -
using System; public class Demo { public static void Main() { DateTime d = DateTime.Now; Console.WriteLine("Date = {0}", d); long res = d.ToFileTimeUtc(); Console.WriteLine("Windows file time (Utc) = {0}", res); } }
ผลลัพธ์
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -
Date = 10/16/2019 8:25:58 AM Windows file time (Utc) = 132156879583999032