문제

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

도움이 되었습니까?

해결책

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.

다른 팁

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().

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top