c# – .NET DateTime to time_t,以秒为单位

有C代码
time1=((double)dt1-25569.0)*86400.0;

它在几秒钟内从TDateTime(VCL)转换为time_t格式,所以最后我需要从.NET DateTime获取time_t格式

关于time_t:

It is almost universally expected to be an integral value representing
the number of seconds elapsed since 00:00 hours,Jan 1,1970 UTC. This
is due to historical reasons,since it corresponds to a unix
timestamp,but is widely implemented in C libraries across all
platforms.

所以要在.NET中获得秒数,我正在做这个(F#):

let seconds(dt : DateTime) =
    (dt.Ticks/10000000L)

或者在C#上(使用更流行的C#标签):

Int64 SEOnds(DateTime dt)
{ return (dt.Ticks/ ((Int64)10000000)); } 
// hope it works,but please correct if I mistaken

据我所知,它是从0001 UTC 1月1日12:00:00开始的时间.

所以要使用time_t格式,我需要在几秒钟内添加1970年.

所以最终函数必须是(F#):

let seconds(dt : DateTime) =
    (dt.Ticks/10000000L) + 31536000*1970

C# :

Int64 SEOnds(DateTime dt)
{ return (dt.Ticks/ ((Int64)10000000)) + 31536000*1970; }

我真的害怕我在这里弄错了.请检查这个解决方案! (检查这是否正确)

谢谢

解决方法

相关文章

在项目中使用SharpZipLib压缩文件夹的时候,遇到如果目录较深,则压缩包中的文件夹同样比较深的问题。比...
项目需要,几十万张照片需要计算出每个照片的特征值(调用C++编写的DLL)。 业务流程:选择照片...
var array = new byte[4]; var i = Encoding.UTF8.GetBytes(100.ToString("x2"));//...
其实很简单,因为Combox的Item是一个K/V的object,那么就可以把它的items转换成IEnumerable<Dic...
把.net4.6安装包打包进安装程序。 关键脚本如下: 头部引用字符串对比库 !include "WordFunc....
项目需求(Winform)可以批量打印某个模板,经过百度和摸索,使用iTextSharp+ZXing.NetʿreeSp...