예제 #1
0
 /// <summary>
 /// Gets the English ordinal suffix of the day based on the specified <paramref name="date"/>.
 /// </summary>
 /// <param name="date">The date.</param>
 /// <returns>The day ordinal suffix.</returns>
 public static string GetDaySuffix(DateTimeOffset date)
 {
     return(TimeUtils.GetDaySuffix(date));
 }