码迷,mamicode.com
首页 > Windows程序 > 详细

C# 获取时间差(几天前,几小时前,几分钟前,几秒前)

时间:2015-03-12 11:17:49      阅读:242      评论:0      收藏:0      [点我收藏+]

标签:

 1         #region 获取时间差string GetTime(BsonString getTime)
 2         /// <summary>
 3         /// 获取时间差
 4         /// </summary>
 5         /// <param name="getTime">数据库时间</param>
 6         /// <returns>时间差</returns>
 7         private string GetTime(BsonString getTime)
 8         {
 9             var time1 = DateTime.ParseExact(Convert.ToString(getTime), "yyyy-MM-dd HH:mm:ss", null);
10             var time = DateTime.Now - time1;
11 
12             if (time.TotalHours > 24)
13             {
14                 return Math.Floor(time.TotalDays) + "天前";
15             }
16             if (time.TotalHours > 1)
17             {
18                 return Math.Floor(time.TotalHours) + "小时前";
19             }
20             if (time.TotalMinutes > 1)
21             {
22                 return Math.Floor(time.TotalMinutes) + "分钟前";
23             }
24             return Math.Floor(time.TotalSeconds) + "秒前";
25         }
26         #endregion

 

C# 获取时间差(几天前,几小时前,几分钟前,几秒前)

标签:

原文地址:http://www.cnblogs.com/gaobing/p/4331614.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!