How can I check if today is the first Monday of the month?
The code below gives me the last day of the month, how should I modify this?
DateTime toda
You could do the following
DateTime dt = ...; if (dt.DayOfWeek == DayOfWeek.Monday && dt.Day <= 7) { // First Monday of the month }