NCrontab.Advanced.CrontabSchedule.MinDate C# (CSharp) 메소드

MinDate() 개인적인 메소드

private MinDate ( System.DateTime newValue, System.DateTime endValue ) : System.DateTime
newValue System.DateTime
endValue System.DateTime
리턴 System.DateTime
        private DateTime MinDate(DateTime newValue, DateTime endValue)
        {
            return newValue >= endValue ? endValue : newValue;
        }