vote up 1 vote down star

I have 2 DateTimes StartDate and EndDate. I want to make sure StartDate is before EndDate. How is this done in C#

flag

54% accept rate
Are answers not showing immediately? Because I refreshed the page to make sure no one else had answered. But after I put in my answer, bam 7 others. – toast Sep 18 '08 at 19:19
@toast, I think eight people just answered at roughly the same time. – Ian Nelson Sep 18 '08 at 19:20

8 Answers

vote up 9 vote down check
if (StartDate < EndDate)
   // code

if you just want the dates, and not the time

if (StartDate.Date < EndDate.Date)
    // code
link|flag
vote up 6 vote down
if(StartDate < EndDate)
{}

DateTime supports normal comparision operators.

link|flag
vote up 2 vote down
if(dateTimeA > dateTimeB) Console.WriteLine("Do your own homework");
link|flag
vote up 2 vote down

Check out DateTime.Compare method

link|flag
vote up 0 vote down
StartDate < EndDate
link|flag
vote up 2 vote down

I believe you can use the overloaded < or > operators.

For example:

DateTime d1 = new DateTime(2008, 1, 1);
DateTime d2 = new DateTime(2008, 1, 2);
if (d1 < d2) { ...
link|flag
vote up 0 vote down
if (StartDate>=EndDate)
{
    throw new InvalidOperationException("Ack!  StartDate is not before EndDate!");
}
link|flag
vote up 0 vote down
        if (new DateTime(5000) > new DateTime(1000))
        {
            Console.WriteLine("i win");
        }
link|flag

Your Answer

Get an OpenID
or

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