Ejemplo n.º 1
0
 /// <summary>
 /// Gets the day of the month along with the English ordinal suffix based on the specified <paramref name="date"/>.
 /// </summary>
 /// <param name="date">The date.</param>
 /// <returns>The day number and ordinal suffix.</returns>
 public static string GetDayNumberAndSuffix(DateTimeOffset date)
 {
     return(TimeUtils.GetDayNumberAndSuffix(date));
 }