using System;
public class Program
{
public static void Main()
Console.WriteLine("Hello World");
string s = "43831.649305555555";
double d = double.Parse(s); // Get the converted date from the OLE automation date.
DateTime conv = DateTime.FromOADate(d);
Console.WriteLine(conv);
}