views:

158

answers:

5

I'm doing DateTime comparison but I don't want to do comparison at second, millisecond and ticks level. What's the most elegant way?

If I simply compare the DateTime, then they are seldom equal due to ticks differences.

+1  A: 

One approach could be to create two new DateTimes from your values you want to compare, but ignore anything from the seconds on down and then compare those:

DateTime compare1 = new DateTime(year1, month1, day1, hour1, minute1, 0);
DateTime compare2 = new DateTime(year2, month2, day2, hour2, minute2, 0);

int result = DateTime.Compare(compare1, compare2);

I'd be the first to admit it's not elegant, but it solves the problem.

ChrisF
+1  A: 

You can convert them to String format and compare the string with each other.

This also gives freedom to choose your comparison parameters, like only the time without the date, etc.

        if (String.Format("{0:ddMMyyyyHHmmss}", date1) == String.Format("{0:ddMMyyyyHHmmss}", date2))
        {
            // success
        }
The King
+5  A: 

What about using a timespan.

if (Math.Truncate((A - B).TotalMinutes) == 0)
{
    //There is less than one minute between them
}

Probably not the most elegant way, but it allows for cases which are one second apart and yet have different days/hours/minutes parts such as going over midnight.

Edit: it occured to me that the truncate is unecessary...

if ((A - B).TotalMinutes < 1)
{
    //There is less than one minute between them
}

Personally I think this is more elegant...

JamesB
I think.. it should read as if ((A - B).TotalMinutes <= 1)
The King
Yeah you're right, I've removed the equals as well since the comment says less than.
JamesB
A: 

How about this ComparerClass?

public class DateTimeComparer : Comparer<DateTime>
{
    private string _Format;

    public DateTimeComparer(string format)
    {
        _Format = format;
    }

    public override int Compare(DateTime x, DateTime y)
    {
        if(x.ToString(_Format) == y.ToString(_Format))
            return 0;

        return x.CompareTo(y);
    }
}

This can be used by

List.Sort(new DateTimeComparer("hh:mm"));
Oliver
+1  A: 

Using a TimeSpan you get all the granularity you want :

        DateTime dt1, dt2;
        double d = (dt2 - dt1).TotalDays;
        double h = (dt2 - dt1).TotalHours;
        double m = (dt2 - dt1).TotalMinutes;
        double s = (dt2 - dt1).TotalSeconds;
        double ms = (dt2 - dt1).TotalMilliseconds;
        double ticks = (dt2 - dt1).Ticks;
hoang
Can be handy at times...
The King