CSharp examples for System:DateTime Week
Is Week Day
public class Main{ public static bool IsWeekDay(this DateTime dt) {/* ww w . j av a2 s. c o m*/ int day = (int)dt.DayOfWeek; return ((day > 0) && (day < 6)); } }