.net 时间戳

        /// <summary>

        /// 获取当前的时间戳

        /// </summary>

        /// <returns></returns>

        public static string Timestamp()

        {

            long ts = ConvertDateTimeToInt(DateTime.Now);

            return ts.ToString();

        }

 

        /// <summary>  

        /// 将c# DateTime时间格式转换为Unix时间戳格式  

        /// </summary>  

        /// <param name="time">时间</param>  

        /// <returns>long</returns>  

        public static long ConvertDateTimeToInt(System.DateTime time)

        {

            //System.DateTime startTime = TimeZone.CurrentTimeZone.ToLocalTime(new System.DateTime(1970, 1, 1, 0, 0, 0, 0));

            //long t = (time.Ticks - startTime.Ticks) / 10000;   //除10000调整为13位      

            long t = (time.Ticks - 621356256000000000) / 10000;

            return t;

        }

 

 

------------------------------------

调用Timestamp()的结果为

 

posted on 2021-04-27 15:13  张不胖  阅读(372)  评论(0编辑  收藏  举报

导航