时间转换为Unix时间戳
Posted Jacob Wu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了时间转换为Unix时间戳相关的知识,希望对你有一定的参考价值。
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Common { public class DateUtils { /// <summary> /// 时间转换为Unix时间戳 /// </summary> /// <param name="date"></param> /// <returns></returns> public static int DateConvertToInt(DateTime date) { DateTime newDate = TimeZone.CurrentTimeZone.ToLocalTime(new DateTime(1970,1,1)); return (int)(date - newDate).TotalSeconds; } } }
以上是关于时间转换为Unix时间戳的主要内容,如果未能解决你的问题,请参考以下文章
在python中将UNIX时间戳转换为str并将str转换为UNIX时间戳[重复]
如何将 Unix 时间戳转换为 DateTime,反之亦然?