C# 获取UTC 转换时间戳为C#时间

2021-03-23 00:27

阅读:500

标签:utc   pre   oca   nbsp   alt   second   ota   timezone   add   

获取UTC

        ///  
        /// 获取时间戳 
        ///  
        /// UTC 
        public static string GetTimeStamp()
        {
            TimeSpan ts = DateTime.UtcNow - new DateTime(1970, 1, 1, 0, 0, 0, 0);
            return Convert.ToInt64(ts.TotalSeconds).ToString();
        }

转换时间戳为C#时间

        /// 
        /// 转换时间戳为C#时间
        /// 
        /// 时间戳 单位:毫秒
        /// C#时间
        public static DateTime ConvertTimeStampToDateTime(long timeStamp)
        {
            DateTime startTime = TimeZone.CurrentTimeZone.ToLocalTime(new System.DateTime(1970, 1, 1)); // 当地时区
            DateTime dt = startTime.AddSeconds(timeStamp);
            return dt;
        }

 

C# 获取UTC 转换时间戳为C#时间

标签:utc   pre   oca   nbsp   alt   second   ota   timezone   add   

原文地址:https://www.cnblogs.com/huanjun/p/9473652.html


评论


亲,登录后才可以留言!