I just noticed what seems like a ridiculous flaw with DateTime comparison.

DateTime d = DateTime.Now;
DateTime dUtc = d.ToUniversalTime();

d == dUtc; // false
d.Equals(dUtc); //false
DateTime.Compare(d, dUtc) == 0; // false

It appears that all comparison operations on DateTimes fail to do any type of smart conversion if one is DateTimeKind.Local and one is DateTimeKind.UTC. Is the a better way to reliably compare DateTimes aside from always converting both involved in the comparison to utc time?

link|improve this question

Why not have all dates in UTC? – katrielalex Aug 3 '11 at 17:26
For the business object that this is associated with, they will always be utc. However it sucks that in tons of other places through out the application I have to remember to convert to utc time when using the date field on one specific business object. – jdc0589 Aug 3 '11 at 17:36
A source of nasty and hard-to-find bugs, esp. if you develop in a local timezone that's equal to UTC, finding your product failing when shipped or when daylight saving time starts. – Abel Aug 3 '11 at 17:50
I think the moral of the story is that you should use the standard form of any data (Unicode strings, UTC dates, whatever) everywhere in an application. – katrielalex Aug 3 '11 at 18:23
feedback

2 Answers

up vote 5 down vote accepted

Edited, my original answer was partially incorrect:

When you call .Equal or .Compare, internally the value .InternalTicks is compared. This field is unequal, because it has been adjusted a couple of hours to represent the time in the universal time. You should see it this way: the DateTime object represents a time in an unnamed timezone, but not a universal time plus timezone. The timezone is either Local (the timezone of your system) or UTC. You might consider this a lack of the DateTime class.

When converting to another timezone, the time is — and should be — adjusted. This is probably why Microsoft chose to use a method as opposed to a property, to emphasize that an action is taken when converting to UTC.

Originally I wrote here that the structs are compared and the flag for System.DateTime.Kind is different. This is not true: it is the amount of ticks that differs:

t1.Ticks == t2.Ticks;       // false
t1.Ticks.Equals(t2.Ticks);  // false

To safely compare two dates, you could convert them to the same kind. If you convert any date to universal time before comparing you'll get the results you're after:

DateTime t1 = DateTime.Now;
DateTime t2 = t1;
t1.Compare(t1.ToUniversalTime(), t2.ToUniversalTime());  //true

The moral: never compare DateTime naively

link|improve this answer
Thats what ive been doing, just kind of sucks to have to convert every date time used in any comparison – jdc0589 Aug 3 '11 at 17:31
@jdc0589: my original answer was incorrect, I updated it to reflected the actual internals going on. – Abel Aug 3 '11 at 17:42
feedback

To deal with this, I created my own DateTime object (let's call it SmartDateTime) that contains the DateTime and the TimeZone. I override all operators like == and Compare and convert to UTC before doing the comparison using the original DateTime operators.

link|improve this answer
This is what im planing on doing. The part that sucks is this is tied to linq-to-sql, so I have to make the existing datetime field private and expose an instance of my custom class publicy which persists to the private datetime....talk about ugly – jdc0589 Aug 3 '11 at 17:28
1  
Ugh. You might be better off just adding a TimeZoneInfo field in your database and storing the dates all in UTC. – AresAvatar Aug 3 '11 at 17:31
feedback

Your Answer

 
or
required, but never shown

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