ashok
ashok

Reputation: 187

Windows Phone 8 Getting list of all time zones

I want to get the list of all time zones that are listed in the Date+Time settings in my windows phone app. How can i do this. Kindly help.

Upvotes: 1

Views: 74

Answers (1)

mbcrump
mbcrump

Reputation: 974

You can't enumerate time zones like you did previously in plain ole c# apps:

TimeZoneInfo.GetSystemTimeZones() 

You can however, use this NuGet package : https://www.nuget.org/packages/WinRTTimeZones

Upvotes: 2

Related Questions