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

C#时间戳转换

时间:2017-06-01 12:06:45      阅读:298      评论:0      收藏:0      [点我收藏+]

标签:turn   second   datetime   ret   cond   int   amp   转换   timestamp   

时间戳转DateTime

timestamp为10位秒级* 10000000,若为13位毫秒级*10000。

private DateTime TimestampToDateTime(long timestamp)

{

    DateTime dateTimeStart = TimeZone.CurrentTimeZone.ToLocalTime(new DateTime(1970,1,1));

    long lTime = timestamp * 10000000;

    TimeSpan nowTimeSpan = new TimeSpan(lTime);

    DateTime resultDateTime = dateTimeStart.Add(nowTimeSpan);

    return resultDateTime;

}

DateTime转时间戳

秒级

private int DateTimeToTimestamp(DateTime time)
{
    DateTime startDateTime = TimeZone.CurrentTimeZone.ToLocalTime(new DateTime(197, 1, 1));
    return Convert.ToInt32((time - startDateTime).TotalSeconds);

}

 

 

C#时间戳转换

标签:turn   second   datetime   ret   cond   int   amp   转换   timestamp   

原文地址:http://www.cnblogs.com/svinoce/p/6927961.html

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