Reputation: 187
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
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