• Source
    1. using System;
    2. using System.Linq;
    3.  
    4. public class Test
    5. {
    6. public static void Main()
    7. {
    8. var date = DateTime.FromOADate(BitConverter.ToDouble(
    9. (new byte[]{0x40,0xE4,0xA1,0x7C,0x20,0x78,0x2C,0x71}).Reverse().ToArray(),
    10. 0));
    11. Console.WriteLine(date);
    12. }
    13. }