List of time zones

  • Thread starter Alexander Vasilevsky
  • Start date
J

Jeff Winn

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.
}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top