Get the default timezone for a country (via CultureInfo)

前端 未结 6 1602
广开言路
广开言路 2020-11-30 05:20

Is there a program or a table that provides the default timezone for every country?

Yes, the US, Canada, & Russia have multiple timezones. (I think every other c

6条回答
  •  离开以前
    2020-11-30 05:39

    May not be exactly what you are looking for, but try this: http://msdn.microsoft.com/en-us/library/system.timezoneinfo.aspx

    To get a specific time zone:

    TimeZoneInfo tZone = TimeZoneInfo.FindSystemTimeZoneById("E. Australia Standard Time");
    

    To see the available zones:

    ReadOnlyCollection zones = TimeZoneInfo.GetSystemTimeZones();
    
    foreach (TimeZoneInfo zone in zones)
    {
         Console.WriteLine(zone.Id);
    }
    

提交回复
热议问题