Id like to Compare a date to see if it is before Saturday like so:
//Check if Saturday YET
if (MYWorkDay.DayOfWeek < DateTime.DayOfWeek.Saturday)
IGottaWork();
else
Party();
There seems to be no way to do this.
Is there a way?
Thanks in advance