将 C# 中的 DateTime 对象转换为 Mozilla 中的纪元

发布于 2024-11-02 13:10:00 字数 360 浏览 0 评论 0原文

我需要能够将 C# 中的 DateTime 对象转换为像 places.sqlite 中存储的纪元。

我尝试过这样做,但我意识到它给了我一个未来的约会!

public static long convertDateTimeToEpoch(DateTime time)
{
    DateTime epoch = new DateTime(1970, 1, 1);

    TimeSpan ts = time - epoch;
    return (long) ts.Ticks/ 10;
}

我做错了什么?有人可以告诉我正确的转换方法吗,因为我没有找到任何例子?

I need to be able to convert a DateTime object in C# to an epoch like the one stored in places.sqlite.

I've tried doing it this way, but I've realised it gives me a date in the future!

public static long convertDateTimeToEpoch(DateTime time)
{
    DateTime epoch = new DateTime(1970, 1, 1);

    TimeSpan ts = time - epoch;
    return (long) ts.Ticks/ 10;
}

What am I doing wrong? Can someone please tell me the proper way of converting as I have not found any examples?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

能否归途做我良人 2024-11-09 13:10:00

我想你正在寻找的是这样的:

public static long convertDateTimeToEpoch(DateTime time)
{
    DateTime epoch = new DateTime(1970, 1, 1);

    return time.Subtract(epoch).TotalMilliseconds;
}

I think what you're looking for is this:

public static long convertDateTimeToEpoch(DateTime time)
{
    DateTime epoch = new DateTime(1970, 1, 1);

    return time.Subtract(epoch).TotalMilliseconds;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文