DateTime.ToFileTime() Method in C#


The DateTime.ToFileTime() method in C# is used to convert the value of the current DateTime object to a Windows file time.

Syntax

Following is the syntax −

public long ToFileTime ();

Example

Let us now see an example to implement the DateTime.ToFileTime() method −

using System;
public class Demo {
   public static void Main() {
      DateTime d = DateTime.Now;
      Console.WriteLine("Date = {0}", d);
      long res = d.ToFileTime();
      Console.WriteLine("Windows file time = {0}", res);
   }
}

Output

This will produce the following output −

Date = 10/16/2019 8:17:26 AM
Windows file time = 132156874462559390

Example

Let us now see another example to implement the DateTime.ToFileTime() method −

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.ToFileTime();
      Console.WriteLine("Windows file time = {0}", res);
   }
}

Output

This will produce the following output −

Date = 5/10/2019 6:10:25 AM
Windows file time = 132019422250000000

Updated on: 07-Nov-2019

363 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements