How to know if a DateTime is between a DateRange in C#
Nope, doing a simple comparison looks good to me: return dateToCheck >= startDate && dateToCheck < endDate; Things to think about though: DateTime is a somewhat odd type in terms of time zones. It could be UTC, it could be “local”, it could be ambiguous. Make sure you’re comparing apples with apples, as it were. … Read more