Q:

Write a C# Sharp program to convert the specified Windows file time to an equivalent UTC time

0

Write a C# Sharp program to convert the specified Windows file time to an equivalent UTC time. 

Expected Output :

6/2/1639 9:25:12 AM 

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

using System;
public class Example23
{
  public static void Main(String[] argv){  
    DateTime dt = DateTime.FromFileTimeUtc(12123123123123123);
    System.Console.WriteLine(dt);
  }
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now