I have two DateTime objects: StartDate and EndDate. I want to make sure StartDate is before EndDate. How is this
DateTime
StartDate
EndDate
if(StartDate < EndDate) {}
DateTime supports normal comparision operators.