コード例 #1
0
        /// <summary>
        /// Gets the date after a number of business days have been added.
        /// </summary>
        /// <param name="startDt">The initial date</param>
        /// <param name="days">The number of business days to add to this date</param>
        /// <returns>A date that is a working day</returns>
        public DateTime AddBusinessDays(DateTime startDt, int days)
        {
            DateTime result = startDt;

            for (int x = 0; x < days; x++)
            {
                result = HolidayCalculator.NextWorkingDay(this, result.AddDays(1));
            }

            return(result);
        }
コード例 #2
0
 /// <summary>
 /// Returns the next working day (Mon-Fri, not public holiday)
 /// after the specified date (or the same date)
 /// </summary>
 /// <param name="dt">The date you wish to check</param>
 /// <returns>A date that is a working day</returns>
 public virtual DateTime NextWorkingDay(DateTime dt)
 {
     return(HolidayCalculator.NextWorkingDay(this, dt));
 }