Calculate relative time in C#

后端 未结 30 2132
生来不讨喜
生来不讨喜 2020-11-21 05:59

Given a specific DateTime value, how do I display relative time, like:

  • 2 hours ago
  • 3 days ago
  • a month ago
30条回答
  •  长情又很酷
    2020-11-21 06:26

    you can try this.I think it will work correctly.

    long delta = new Date().getTime() - date.getTime();
    const int SECOND = 1;
    const int MINUTE = 60 * SECOND;
    const int HOUR = 60 * MINUTE;
    const int DAY = 24 * HOUR;
    const int MONTH = 30 * DAY;
    
    if (delta < 0L)
    {
      return "not yet";
    }
    if (delta < 1L * MINUTE)
    {
      return ts.Seconds == 1 ? "one second ago" : ts.Seconds + " seconds ago";
    }
    if (delta < 2L * MINUTE)
    {
      return "a minute ago";
    }
    if (delta < 45L * MINUTE)
    {
      return ts.Minutes + " minutes ago";
    }
    if (delta < 90L * MINUTE)
    {
      return "an hour ago";
    }
    if (delta < 24L * HOUR)
    {
      return ts.Hours + " hours ago";
    }
    if (delta < 48L * HOUR)
    {
      return "yesterday";
    }
    if (delta < 30L * DAY)
    {
      return ts.Days + " days ago";
    }
    if (delta < 12L * MONTH)
    {
      int months = Convert.ToInt32(Math.Floor((double)ts.Days / 30));
      return months <= 1 ? "one month ago" : months + " months ago";
    }
    else
    {
      int years = Convert.ToInt32(Math.Floor((double)ts.Days / 365));
      return years <= 1 ? "one year ago" : years + " years ago";
    }
    

提交回复
热议问题