gpt4 book ai didi

c# - 如何将 .NET 日期转换为 NSTimeInterval?

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:51:26 28 4
gpt4 key购买 nike

我们有 .NET 代码 (C#) 写入 SQLite 数据库,然后由 iOS (iPhone) 应用程序使用 objective-c 读取。

SQLite 中使用的日期格式是 NSTimeInterval(NSDate with dateWithIntervalSince1970)因为它在 iPhone 上很高效。

.NET DateTime 如何转换为 NSTimeInterval,以便在使用 dateWithIntervalSince1970 提取时日期正确?

注意事项:1)我试图搜索 NSTimeInterval 的基本工作原理,但只找到这个不透明的文档: http://developer.apple.com/library/mac/#documentation/Cocoa/Reference/Foundation/Miscellaneous/Foundation_DataTypes/Reference/reference.html

2) 尽管 C# 代码是理想的我很乐意使用从 3 个整数(年/月/日)到 double 的伪代码。

最佳答案

我想你的意思是NSTimeInterval . NSTimeInterval表示时间跨度,以秒为单位,因此它在 .NET 中的逻辑等价物是 System.TimeSpan而不是 System.DateTime .但是,如果您将其指定为 January 1, 1970 00:00:00 GMT 以来的时间跨度,这就是你用 -timeIntervalSince1970 得到的结果, 那么它和 System.DateTime 之间的转换成为可能。

System.DateTime 之间转换和一个 POSIX 时间戳(这就是 NSTimeInterval 在这种情况下加上亚秒精度),你可能想要这样的东西:

DateTime unixEpoch = new DateTime(1970, 1, 1, 0, 0, 0, 0, DateTimeKind.Utc);
DateTime dt = ...;
double intervalSince1970 = (dt - unixEpoch).TotalSeconds;

走另一条路:

DateTime unixEpoch = new DateTime(1970, 1, 1, 0, 0, 0, 0, DateTimeKind.Utc);
double intervalSince1970 = ...;
DateTime dt = unixEpoch + TimeSpan.FromSeconds(intervalSince1970);

关于c# - 如何将 .NET 日期转换为 NSTimeInterval?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7734315/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com