TimeZoneInfo 类和夏令时
我正在尝试获取设备(Windows Phone)的时区。我使用了这个类和属性 BaseUtcOffset。我住在约旦,本来应该给我+3 小时,但结果却给了我+2 小时。我认为这是夏令时,但我不知道如何使用它,有什么想法吗?
var x = TimeZoneInfo.Local.BaseUtcOffset; // x.Hours = 2
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该使用
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.
这是正确的回应。时区比 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()
orIsDaylightSavingsTime()
.