Exemplo n.º 1
0
 /// <summary>
 /// Gets date for next instance of day.
 /// </summary>
 /// <param name="startDate">Date to start at.</param>
 /// <param name="moveTo">Day of the week to move to.</param>
 /// <returns></returns>
 public static DateTime MereGetNextDayOfWeekDate(this DateTime startDate, DayOfWeek moveTo)
 {
     return(MereUtils.GetNextDayOfWeek(startDate, moveTo));
 }