时间戳

作者: 叫我颜先生 | 来源:发表于2023-06-28 17:20 被阅读0次
    时间戳
        public static string GetDate(long time)
        {
            System.DateTime startTime = TimeZone.CurrentTimeZone.ToLocalTime(new System.DateTime(1970, 1, 1, 0, 0, 0, 0));
            DateTime dt = startTime.AddMilliseconds(time);
            string t = dt.ToString("yyyy/MM/dd HH:mm");
            return t;
        }
    
        public static long GetTimeTicks(DateTime time)
        {
            return (time.ToUniversalTime().Ticks - 621355968000000000) / 10000000;
        }

    相关文章

      网友评论

          本文标题:时间戳

          本文链接:https://www.haomeiwen.com/subject/jqhqrdtx.html