コード例 #1
0
 public bool IsMatch(DateTime when)
 {
     return(MinuteSection.IsMatch(when) &&
            HourSection.IsMatch(when) &&
            DayOfMonthSection.IsMatch(when) &&
            DayOfWeekSection.IsMatch(when) &&
            MonthSection.IsMatch(when));
 }