check if two date ranges overlap c#

342

check if two date ranges overlap c# -

bool overlap = a.start < b.end && b.start < a.end;

Comments

Submit
0 Comments