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;
}
|
|
No.
This subtracts two Additionally, the conditional can written directly as:
No |
|||||||||||||||||||
|
|
should be
note the total days otherwise you'll get werid behaviour |
|||||||||||||
|
|
Well I would do it like this instead:
Compare only responds with an integer indicating weather the first is earlier, same or later... |
|||
|
|
|
Try this instead
|
|||||||
|
|
Compare returns 1, 0, -1 for greater than, equal to, less than, respectively. You want:
|
||||
|
|
|
This will give you accurate result :
|
||||
|
|
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. |
|||
|
|
|
No you are not using it correctly. See here for details.
|
|||
|
|
|
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. |
|||
|
|
|
No it's not correct, try this :
|
|||
|
|
|
Actually none of these answers worked for me. I solved it by doing like this:
When i tried doing this:
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. |
|||
|
|
|
|||||
|
|
Compare is unnecessary, Days / TotalDays are unnecessary. All you need is
note this will work if you decide to use minutes or months or even years as your expiry criteria. |
|||
|