I have 2 DateTimes StartDate and EndDate. I want to make sure StartDate is before EndDate. How is this done in C#
|
|
|||||
|
|
|
if you just want the dates, and not the time
|
||
|
|
|
|
DateTime supports normal comparision operators. |
||
|
|
|
|
|
||
|
|
|
|
Check out DateTime.Compare method |
||
|
|
|
|
I believe you can use the overloaded < or > operators. For example:
|
||
|
|
|
|
|
||
|
|
|
|
|
||
|
|
|
|
|
||
|
|
