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