using System;
public class Program
{
public static void Main()
// I want to see the Date of this ticks value...
DateTime a = new DateTime(637017084000000000);
Console.WriteLine(a.Date.ToString());
}