I get current time from http://nist.time.gov , it returns this value 1396677467961079
for today. but what type of value is that?
I tried this:
var dateTime = new DateTime();
dateTime.AddSeconds(val); // val is of type double
But it throws an exception saying value was out of range. How can I convert that value?