TimeZoneInfo.GetSystemTimeZones() : TimeZoneInfo « System.Globalization « C# / C Sharp by API






TimeZoneInfo.GetSystemTimeZones()

  
using System;
public class MainClass {
    public static void Main() {

        foreach (TimeZoneInfo z in TimeZoneInfo.GetSystemTimeZones())
            Console.WriteLine(z.Id);
    }
}

   
    
  








Related examples in the same category

1.TimeZoneInfo.AdjustmentRule
2.TimeZoneInfo.BaseUtcOffset
3.TimeZoneInfo.DisplayName
4.TimeZoneInfo.FindSystemTimeZoneById
5.TimeZoneInfo.GetAdjustmentRules()
6.TimeZoneInfo.Local
7.TimeZoneInfo.SupportsDaylightSavingTime