Search Results

6
votes

How to check if one DateTime is later than another in C#

if(StartDate < EndDate) {} DateTime supports normal comparision operators. …