C# DateTime 与时间戳相互转换
Posted 制作小程序网站电脑程序
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# DateTime 与时间戳相互转换相关的知识,希望对你有一定的参考价值。
用法很简单,传入当前时间(如 DateTime.Now)或 10 位时间戳(1590491120):
using System;
// DateTime 转时间戳
long UnixTimestamp(DateTime dateTime)
{
DateTime dt1970 = new DateTime(1970, 1, 1, 0, 0, 0, 0);
return (dateTime.Ticks - dt1970.Ticks) / 10000000;
}
// 时间戳转 DateTime
DateTime GetDateTimeFrom1970Ticks(long curSeconds)
{
DateTime dtStart = TimeZone.CurrentTimeZone.ToLocalTime(new DateTime(1970, 1, 1));
return dtStart.AddSeconds(curSeconds);
}
相关环境:
.NET Framework 4.0
以上是关于C# DateTime 与时间戳相互转换的主要内容,如果未能解决你的问题,请参考以下文章
Python time和datetime时间戳和时间字符串相互转换