zoukankan      html  css  js  c++  java
  • 将dateTime格式转换为Unix时间戳或将Unix时间戳转换为dateTime格式

            #region 将dateTime格式转换为Unix时间戳
            /// <summary>
            /// 将dateTime格式转换为Unix时间戳
            /// </summary>
            /// <param name="dateTime"></param>
            /// <returns></returns>
            public static int DateTimeToUnixTime(DateTime dateTime)
            {
                return (int)(dateTime - TimeZone.CurrentTimeZone.ToLocalTime(new DateTime(1970, 1, 1))).TotalSeconds;
            }
            #endregion
    
            #region 将Unix时间戳转换为dateTime格式
            /// <summary>
            /// 将Unix时间戳转换为dateTime格式
            /// </summary>
            /// <param name="time"></param>
            /// <returns></returns>
            public static DateTime UnixTimeToDateTime(int time)
            {
                if (time < 0)
                    throw new ArgumentOutOfRangeException("time is out of range");
    
                return TimeZone.CurrentTimeZone.ToLocalTime(new DateTime(1970, 1, 1)).AddSeconds(time);
            }
            #endregion
  • 相关阅读:
    twfont
    判断数组中某个元素的个数
    vue swiper中的大坑
    this指向问题
    vue.nextTick简单的用法
    类图解析
    设计模式
    设计模式
    Http Notes
    VS Notes
  • 原文地址:https://www.cnblogs.com/duhaoran/p/14886502.html
Copyright © 2011-2022 走看看