I've got 4 dates startDate
, endDate
, periodStartDate
, periodEndDate
And I need a method to return true if the period denoted by the startDate
and endDate
overlap the period denoted by the periodStartDate
and periodEndDate
.
This is C# 3.5 so can't use tuples. like the suggested link
My brain doesn't seem to be working so can somebody please help me out.
Thanks!