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

C# 时间戳的生成

时间:2016-09-18 14:54:02      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:

       /**
        * 生成时间戳,标准北京时间,时区为东八区,自1970年1月1日 0点0分0秒以来的秒数
         * @return 时间戳
        */
        public static string GenerateTimeStamp()
        {
            TimeSpan ts = DateTime.UtcNow - new DateTime(1970, 1, 1, 0, 0, 0, 0);
            return Convert.ToInt64(ts.TotalSeconds).ToString();
        }

 

C# 时间戳的生成

标签:

原文地址:http://www.cnblogs.com/shaozhuyong/p/5881388.html

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