I'm converting a DateTime to OADate. I was expecting to get the exact same DateTime when converting the OADate back, but now it has only millisecond resolution, and is therefore different.

var a = DateTime.UtcNow;
double oadate = a.ToOADate();
var b = DateTime.FromOADate(oadate);
int compare = DateTime.Compare(a, b); 

//Compare is not 0; the date times are not the same

Ticks from a: 634202170964319073

Ticks from b: 634202170964310000

The OADate double: 40437.290467951389

What is the reason for this? The resolution of DateTime is clearly good enough.

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

The static method called by ToOADate clearly divides the ticks by 10000 and then stores the result in a long, thus removing any sub millisecond info

Does anyone know where to find the specs of the OADate format?

    private static double TicksToOADate(long value)
    {
        if (value == 0L)
        {
            return 0.0;
        }
        if (value < 0xc92a69c000L)
        {
            value += 0x85103c0cb83c000L;
        }
        if (value < 0x6efdddaec64000L)
        {
            throw new OverflowException(Environment.GetResourceString("Arg_OleAutDateInvalid"));
        }
        long num = (value - 0x85103c0cb83c000L) / 0x2710L;
        if (num < 0L)
        {
            long num2 = num % 0x5265c00L;
            if (num2 != 0L)
            {
                num -= (0x5265c00L + num2) * 2L;
            }
        }
        return (((double)num) / 86400000.0);
    }
link|improve this answer
1  
Not exactly specs, but this is worth a read: blogs.msdn.com/b/ericlippert/archive/2003/09/16/… – Mattias S Sep 16 '10 at 8:07
Thanks, there seems to be a lot of history behind this date format... – vc 74 Sep 16 '10 at 9:04
feedback

Probably has something to do with precision of the double, not the DateTime.

link|improve this answer
The converted double is 40437.290467951389, looks pretty precise, but you might be correct. – Ezombort Sep 16 '10 at 7:01
Yes, the double would be precise enough, but because of the way double is stored, there is not an exact representation of the datetime as a double. – Carvelis Sep 16 '10 at 7:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.