11
1
using System;
2
3
public class Program
4
{
5
public static void Main()
6
{
7
// I want to see the Date of this ticks value...
8
DateTime a = new DateTime(637017084000000000);
9
Console.WriteLine(a.Date.ToString());
10
}
11
}
Cached Result