Esempio n. 1
0
 /// <summary>
 /// Gets the last day of the month of the specified <paramref name="date"/>.
 /// </summary>
 /// <param name="date">The date.</param>
 /// <returns>An instance of <see cref="DateTimeOffset"/> representing the last day of the month.</returns>
 public static DateTimeOffset GetLastDayOfMonth(DateTimeOffset date)
 {
     return(TimeUtils.GetLastDayOfMonth(date));
 }