So I'm trying to figure out if a DateTime is between two Dates as well as two times.
For example,
if DateTime.Now >= January && DateTime.Now < August && DateTime.Now >= 9am && DateTime.Now < 12pm
//do something
I'm not really sure how to go about this, any help is appreciated :')