List of time zones

  • Thread starter Thread starter Alexander Vasilevsky
  • Start date Start date
You can use the System.TimeZoneInfo class for that.

using System;
using System.Collections.ObjectModel;

foreach (TimeZoneInfo timeZone in TimeZoneInfo.GetSystemTimeZones()) {
// Fill your dropdown instance with what you want to display for the
time zone in here.
}
 
Back
Top