Get Time Zones list in c# [duplicate]

GetSystemTimeZones().

ReadOnlyCollection<TimeZoneInfo> tz;
tz= TimeZoneInfo.GetSystemTimeZones();

Keep in mind that this returns a ReadOnlyCollection(T)

You can also learn how to populate a list with those timezones here.


You can use TimeZoneInfo.GetSystemTimeZones().


TimeZoneInfo.GetSystemTimeZones()