Ejemplo n.º 1
0
 /// <summary>
 /// Gets the first 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 first day of the month.</returns>
 public static DateTimeOffset GetFirstDayOfMonth(DateTimeOffset date)
 {
     return(TimeUtils.GetFirstDayOfMonth(date));
 }