Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- class Program
- {
- static void Main()
- {
- byte[] bytes = new byte[] { 190, 110, 116, 207, 178, 140, 229, 64 };
- long l = BitConverter.ToInt64(bytes, 0);
- DateTime dt = DateTime.FromOADate(BitConverter.Int64BitsToDouble(l));
- Console.WriteLine(dt);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement