Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在制作一个即时通讯应用程序,所以我需要一种方法来告诉用户多久之前收到了一条消息。我的方法接收捕获的 DateTime.Now 并将其与当前 DateTime.Now 进行检查以查看经过的时间,然后计算它并返回诸如“6 秒前”、“1 分钟前”、“1 个月前”之类的内容.
我在这里发布了我的代码:http: //pastebin.com/7N1kqLQ6
我不相信我的代码是正确的。其他人是否在我的代码逻辑中看到了问题?
TimeSpan.Minutes永远是< 60,因为它只是“分钟部分”而不是“以分钟表示的时间”。
TimeSpan.Minutes
< 60
您可能应该使用相应的 Total 方法,例如TimeSpan.TotalMinutes.
TimeSpan.TotalMinutes