TimeZoneInfo 类和夏令时

发布于 2024-11-28 20:48:37 字数 318 浏览 1 评论 0原文

我正在尝试获取设备(Windows Phone)的时区。我使用了这个类和属性 BaseUtcOffset。我住在约旦,本来应该给我+3 小时,但结果却给了我+2 小时。我认为这是夏令时,但我不知道如何使用它,有什么想法吗?

var x = TimeZoneInfo.Local.BaseUtcOffset;  // x.Hours = 2

来自 timeanddate.com 的正确时区

I am trying to get the Timezone of the device (windows phone). I used this class and the property BaseUtcOffset. I live In Jordan, and it was suppose to give me +3 hours, but instead it gave me +2. i think its the daylight saving time, but i have no idea how to use it, any ideas?

var x = TimeZoneInfo.Local.BaseUtcOffset;  // x.Hours = 2

the correct timezone from timeanddate.com

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

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

发布评论

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

评论(2

无语# 2024-12-05 20:48:37

您应该使用 GetUtcOffset()

BaseUtcOffset 属性返回 UTC 与时区标准时间之间的差异; GetUtcOffset 方法返回特定时间点的 UTC 时间与时区时间之间的差异。

You should use GetUtcOffset().

The BaseUtcOffset property returns the difference between UTC and the time zone's standard time; the GetUtcOffset method returns the difference between UTC and the time zone's time at a particular point in time.

冷夜 2024-12-05 20:48:37

这是正确的回应。时区比 UTC 早 2 小时。当地时间比 UTC 早 3 小时。

您可能想查看 GetUtcOffset( )IsDaylightSavingsTime()

That's the right response. The timezone is 2 hours ahead of UTC. Local time is 3 hours ahead of UTC.

You might want to look at GetUtcOffset() or IsDaylightSavingsTime().

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