Aqueduct.Extensions.Dates.IsWeekEnd C# (CSharp) Метод

IsWeekEnd() публичный статический Метод

Checks to see if the date is Saturday or Sunday
public static IsWeekEnd ( this dt ) : bool
dt this The dt.
Результат bool
        public static bool IsWeekEnd(this DateTime dt)
        {
            return (dt.DayOfWeek == DayOfWeek.Saturday || dt.DayOfWeek == DayOfWeek.Sunday);
        }