Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to compare a time stamp from an incoming request to a database stored value. SQL Server of course keeps some precision of milliseconds on the time, and when read into a .NET DateTime, it includes those milliseconds. The incoming request to the system, however, does not offer that precision, so I need to simply drop the milliseconds.

I feel like I'm missing something obvious, but I haven't found an elegant way to do it (C#).

share|improve this question

8 Answers

up vote 111 down vote accepted

The following will work for a DateTime that has fractional milliseconds, and also preserves the Kind property (Local, Utc or Undefined).

DateTime dateTime = ... anything ...
dateTime = new DateTime(
    dateTime.Ticks - (dateTime.Ticks % TimeSpan.TicksPerSecond), 
    dateTime.Kind
    );

or the equivalent and shorter:

dateTime = dateTime.AddTicks( - (dateTime.Ticks % TimeSpan.TicksPerSecond));

alternatively, if you only want to trim off fractional milliseconds (but leave milliseconds on your datetime)

dateTime = dateTime.AddTicks( - (dateTime.Ticks % TimeSpan.TicksPerMillisecond));
share|improve this answer
5  
+1: Preserving the Kind property. – Richard Jun 17 '09 at 12:39
While I'll give you this because you're technically correct, for people reading data out of SQL Server to compare to some distributed data (a Web-based request, in my case), this amount of resolution is not necessary. – Jeff Putz Jun 17 '09 at 21:33
Nice. Clearly someone needs to give the DateTime class some extension methods to round to nearest whatever so that this type of good coding will get reused. – chris.w.mclean Jun 17 '09 at 21:48
2  
+1 for truncating fractions of a millisecond – Seth Reno May 5 '10 at 21:04
Beautiful! I needed to compare file's LastWriteTime against stored value and milliseconds were throwing everything off. This solution worked like a charm – Yuriy Galanter Jun 25 '12 at 17:27
DateTime d = DateTime.Now;
d = d.AddMilliseconds(-d.Millisecond);
share|improve this answer
1  
Very elegant. Should've thought of that! Well done. – Jeff Putz Jun 17 '09 at 2:39
26  
-1: Will work only if the DateTime value does not include fractions of a millisecond. – Joe Jun 17 '09 at 10:43
6  
Using this method caused some of my unit tests to fail: Expected: 2010-05-05 15:55:49.000 But was: 2010-05-05 15:55:49.000. I'm guessing due to what Joe mentioned about fractions of a millisecond. – Seth Reno May 5 '10 at 20:57
4  
Doesn't work for serialization, e.g. 2010-12-08T11:20:03.000099+15:00 is the output, doesn't completely chop off the milliseconds. – joedotnot Dec 8 '10 at 0:24
2  
This looks good, but doesn't work. – g . Dec 23 '10 at 13:39
show 1 more comment
date = DateTime.Now;

date = new DateTime(date.Year,date.Month,date.Day,date.Hour,date.Minute,date.Second)
share|improve this answer
i was about to paste a solution like this... imo this is the most straightforward approach (not sure why this only has a few votes) – Venkat D. Jul 17 '10 at 4:37
the best way to go.. – andrew007 Aug 6 '10 at 19:43
6  
Clear and simple, just remember to add a ",date.Kind" to the end of the constructor to make sure that you don't lose an important piece of information. – JMcDaniel Feb 2 '11 at 15:59
Very nice and simple – Randy Minder Jul 31 '12 at 18:27

Here is an extension method based on a previous answer that will let you truncate to any resolution...

Usage:

DateTime myDateSansMilliseconds = myDate.Truncate(TimeSpan.TicksPerSecond);
DateTime myDateSansSeconds = myDate.Truncate(TimeSpan.TicksPerMinute)

Class:

public static class DateTimeUtils
{
    /// <summary>
    /// <para>Truncates a DateTime to a specified resolution.</para>
    /// <para>A convenient source for resolution is TimeSpan.TicksPerXXXX constants.</para>
    /// </summary>
    /// <param name="date">The DateTime object to truncate</param>
    /// <param name="resolution">e.g. to round to nearest second, TimeSpan.TicksPerSecond</param>
    /// <returns>Truncated DateTime</returns>
    public static DateTime Truncate(this DateTime date, long resolution)
    {
        return new DateTime(date.Ticks - (date.Ticks % resolution), date.Kind);
    }
}
share|improve this answer

Less obvious but more than 2 times faster :

// 10000000 runs

DateTime d = DateTime.Now;

// 484,375ms
d = new DateTime((d.Ticks / TimeSpan.TicksPerSecond) * TimeSpan.TicksPerSecond);

// 1296,875ms
d = d.AddMilliseconds(-d.Millisecond);
share|improve this answer
Note that the second option, d.AddMilliseconds(-d.Millisecond), does not necessarily move the DateTime exactly on to the previous, full second. d.Ticks % TimeSpan.TicksPerMillisecond ticks (somewhere between 0 and 9,999) beyond your second will remain. – Technetium Sep 12 '12 at 20:59

Instead of dropping the milliseconds then comparing, why not compare the difference?

DateTime x; DateTime y;
bool areEqual = (x-y).TotalSeconds == 0;

or

TimeSpan precision = TimeSpan.FromSeconds(1);
bool areEqual = (x-y).Duration() < precision;
share|improve this answer
the first option doesnt work, because TotalSeconds is a double; it also returns the milliseconds. – Jowen Jun 10 '10 at 10:21

Regarding Diadistis response. This worked for me, except I had to use Floor to remove the fractional part of the division before the multiplication. So,

d = new DateTime((d.Ticks / TimeSpan.TicksPerSecond) * TimeSpan.TicksPerSecond);

becomes

d = new DateTime(Math.Floor(d.Ticks / TimeSpan.TicksPerSecond) * TimeSpan.TicksPerSecond);

I would have expected the division of two Long values to result in a Long, thus removing the decimal part, but it resolves it as a Double leaving the exact same value after the multiplication.

Eppsy

share|improve this answer

2 Extension methods for the solutions mentioned above

    public static bool LiesAfterIgnoringMilliseconds(this DateTime theDate, DateTime compareDate, DateTimeKind kind)
    {
        DateTime thisDate = new DateTime(theDate.Year, theDate.Month, theDate.Day, theDate.Hour, theDate.Minute, theDate.Second, kind);
        compareDate = new DateTime(compareDate.Year, compareDate.Month, compareDate.Day, compareDate.Hour, compareDate.Minute, compareDate.Second, kind);

        return thisDate > compareDate;
    }


    public static bool LiesAfterOrEqualsIgnoringMilliseconds(this DateTime theDate, DateTime compareDate, DateTimeKind kind)
    {
        DateTime thisDate = new DateTime(theDate.Year, theDate.Month, theDate.Day, theDate.Hour, theDate.Minute, theDate.Second, kind);
        compareDate = new DateTime(compareDate.Year, compareDate.Month, compareDate.Day, compareDate.Hour, compareDate.Minute, compareDate.Second, kind);

        return thisDate >= compareDate;
    }

usage:

bool liesAfter = myObject.DateProperty.LiesAfterOrEqualsIgnoringMilliseconds(startDateTime, DateTimeKind.Utc);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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