在非托管代码中将 UNIX 时间戳转换为 .NET DateTime 刻度(不使用 .NET)
我需要在 Python/C++ 中“构造”.NET DateTime 值。
如何计算 DateTime 存储的从 UNIX 时间戳开始的刻度数?
涉及 Win32 API 调用的解决方案是可以的(我相信 FILETIME 函数可以提供帮助)。
I need to "construct" .NET DateTime values in Python/C++.
How can I compute the number of ticks stored by DateTime starting from a UNIX timestamp?
A solution involving Win32 API calls it's ok (I believe FILETIME functions could help).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这将为您提供自 Unix Epoc 开始以来的滴答数(即 621,355,968,000,000,000)
这将为您提供每秒的滴答数(即 10,000,000)
从那里开始计算(可能会在闰秒附近遇到奇怪的情况)。
This would give you the number of ticks since that the Unix Epoc starts at (which is 621,355,968,000,000,000)
This gives you ticks per second (which is 10,000,000)
Just math from there (may run into weirdness around leap seconds).