How to get a list of all cities in the world and their correponding time zone information including DST [closed]

StackOverflow https://stackoverflow.com/questions/8033732

  •  23-02-2021
  •  | 
  •  

As the title says, is there any way to get ahold of this information?

有帮助吗?

解决方案

In .NET, you can use the System.TimeZoneInfo.GetSystemTimeZones() method to get a list of all of the timezones in the world, including DST information. This doesn't tell you which cities are in which timezones, however. For that you would need some sort of third-party database.

You should also take a look at this question: Web service - current time zone for a city?.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top