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 work out if an account expires in less than 30 days. Am I using DateTime Compare correctly?

if (DateTime.Compare(expiryDate, now) < 30)

{
     matchFound = true;
}
share|improve this question

13 Answers

up vote 81 down vote accepted

Am I using DateTime Compare correctly?

No. Compare only offers information about the relative position of two data: less, equal or greater. What you want is something like this:

if ((expiryDate - DateTime.Now).TotalDays < 30)
    matchFound = true;

This subtracts two DateTimes. The result is a TimeSpan object which has a TotalDays property.

Additionally, the conditional can written directly as:

matchFound = (expiryDate - DateTime.Now).TotalDays < 30;

No if needed.

share|improve this answer
1  
Should be allowed to give you 2+ ;) one for the answer and one for the short way to express it – CheGueVerra Feb 9 '09 at 14:40
3  
Uh … I just made my answer longer so feel free to subtract one imaginary vote. ;-) – Konrad Rudolph Feb 9 '09 at 14:42
Please use TotalDays instead of days. – João Portela Feb 20 at 10:40
1  
@João Why? It makes no difference in this case. – Konrad Rudolph Feb 20 at 10:51
1  
@João Hmm. Agreed. Will change. – Konrad Rudolph Feb 20 at 11:34
show 1 more comment

should be

matchFound = (expiryDate - DateTime.Now).TotalDays < 30;

note the total days otherwise you'll get werid behaviour

share|improve this answer
   
this answer was over a year after the last edit to accepted answer! – Mitch Wheat Jan 12 at 1:23
@Mitch - This is the correct answer, notice he is using TotalDays rather than Days. – Marcelo Delgado Jan 20 at 22:42
The accepted answer is correct. TotalDays returns a fractional portion as well, which is redundant when comparing to an integer. – Mitch Wheat Jan 20 at 23:57
1  
@MitchWheat TotalDays is conceptually correct field to use. In practice they give the same result but only because Days is the biggest component of TimeSpan, had there been a Months or Years component and this would have been a different story. Just try with Hours, Seconds or Milliseconds to see how they work. – João Portela Feb 20 at 10:40

Well I would do it like this instead:

TimeSpan diff = expiryDate - DateTime.Today;
if (diff.Days > 30) 
   matchFound = true;

Compare only responds with an integer indicating weather the first is earlier, same or later...

share|improve this answer

Try this instead

if ( (expiryDate - DateTime.Now ).TotalDays < 30 ) { 
  matchFound = true;
}
share|improve this answer
1  
Hmm, you need to either invert the order of your dates or take the absolute value, unless the expiration date is already passed. – Konrad Rudolph Feb 9 '09 at 14:45
@Konrad, yeah, I read the question wrong. Corrected – JaredPar Feb 9 '09 at 15:14

Compare returns 1, 0, -1 for greater than, equal to, less than, respectively.

You want:

    if (DateTime.Compare(expiryDate, DateTime.Now.AddDays(30)) <= 0) 
    { 
        bool matchFound = true;
    }
share|improve this answer

This will give you accurate result :

if ((expiryDate.Date - DateTime.Now.Date).Days < 30)
    matchFound = true;
share|improve this answer
actually what happens hr is eg.expryDte is 28/4/2011 if U rite (expiryDate-DateTime.now) it will take the time as well (28/4/2011 12:00:00 AM - 26/4/2011 11:47:00 AM) & above code takes value as 28/4/2011 12:00:00 AM -26/4/2011 12:00:00 AM which ill give accurate difference. – Jayant May 3 '11 at 9:29

No, the Compare function will return either 1, 0, or -1. 0 when the two values are equal, -1 and 1 mean less than and greater than, I believe in that order, but I often mix them up.

share|improve this answer

No you are not using it correctly.

See here for details.

DateTime t1 = new DateTime(100);
DateTime t2 = new DateTime(20);

if (DateTime.Compare(t1, t2) >  0) Console.WriteLine("t1 > t2"); 
if (DateTime.Compare(t1, t2) == 0) Console.WriteLine("t1 == t2"); 
if (DateTime.Compare(t1, t2) <  0) Console.WriteLine("t1 < t2");
share|improve this answer

What you want to do is subtract the two DateTimes (expiryDate and DateTime.Now). This will return an object of type TimeSpan. The TimeSpan has a property "Days". Compare that number to 30 for your answer.

share|improve this answer

No it's not correct, try this :

DateTime expiryDate = DateTime.Now.AddDays(-31);
if (DateTime.Compare(expiryDate, DateTime.Now.AddDays(-30)) < 1)
{
    matchFound = true;
}
share|improve this answer

Actually none of these answers worked for me. I solved it by doing like this:

  if ((expireDate.Date - DateTime.Now).Days > -30)
  {
    matchFound = true;
  }

When i tried doing this:

matchFound = (expiryDate - DateTime.Now).Days < 30;

Today, 2011-11-14 and my expiryDate was 2011-10-17 i got that matchFound = -28. Instead of 28. So i inversed the last check.

share|improve this answer
// this isn't set up for good processing.  
//I don't know what data set has the expiration 
//dates of your accounts.  I assume a list.
// matchfound is a single variablethat returns true if any 1 record is expired.

bool matchFound = false;
            DateTime dateOfExpiration = DateTime.Today.AddDays(-30);
            List<DateTime> accountExpireDates = new List<DateTime>();
            foreach (DateTime date in accountExpireDates)
            {
                if (DateTime.Compare(dateOfExpiration, date) != -1)
                {
                    matchFound = true;
            }
            }
share|improve this answer
1  
Isn't that a bit complicated? – Max Sep 27 '12 at 12:28

Compare is unnecessary, Days / TotalDays are unnecessary.

All you need is

if (expireDate < DateTime.Now) {
    // has expired
} else {
    // not expired
}

note this will work if you decide to use minutes or months or even years as your expiry criteria.

share|improve this answer
Not a great answer because now you are also factoring in hours, minutes and seconds. DateTime.Today would be more correct for the OPs situation. – JL. Nov 7 '11 at 13:59

Your Answer

 
discard

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