Computer >> Máy Tính >  >> Lập trình >> C#

Phương thức DateTimeOffset.FromFileTime () trong C #

Phương thức DateTimeOffset.FromFileTime () trong C # được sử dụng để chuyển đổi thời gian tệp Windows được chỉ định thành thời gian cục bộ tương đương.

Cú pháp

Sau đây là cú pháp -

public static DateTimeOffset FromFileTime (long time);

Ở trên, thời gian là thời gian tệp Windows, tính bằng tích tắc.

Ví dụ

Bây giờ chúng ta hãy xem một ví dụ để triển khai phương thức DateTimeOffset.FromFileTime () -

using System;
public class Demo {
   public static void Main() {
      DateTimeOffset offset = DateTimeOffset.FromFileTime(0);
      Console.WriteLine("DateTimeOffset = {0:dd} {0:y}, {0:hh}:{0:mm}:{0:ss} ",offset);
   }
}

Đầu ra

Điều này sẽ tạo ra kết quả sau -

DateTimeOffset = 01 January 1601, 12:00:00

Ví dụ

Bây giờ chúng ta hãy xem một ví dụ khác để triển khai phương thức DateTimeOffset.FromFileTime () -

using System;
public class Demo {
   public static void Main() {
      DateTimeOffset offset = DateTimeOffset.FromFileTime(200000000);
      Console.WriteLine("DateTimeOffset = {0:dd} {0:y}, {0:hh}:{0:mm}:{0:ss} ",offset);
   }
}

Đầu ra

Điều này sẽ tạo ra kết quả sau -

DateTimeOffset = 01 January 1601, 12:00:20