Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
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
Advertisements