c#时间类型转为时间戳-10位

  • Post author:
  • Post category:其他


 public static int GetTimestamp(DateTime? dateTime)
        {
            if (dateTime == null) return 0;
            
            TimeSpan ts = Convert.ToDateTime(dateTime).ToUniversalTime() - new DateTime(1970, 1, 1);//ToUniversalTime()转换为标准时区的时间,去掉的话直接就用北京时间
            return (int)ts.TotalSeconds; 
            
        }



版权声明:本文为weixin_44399541原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。