Home >Backend Development >C++ >What is a complete list of TimeZone IDs supported by C#'s `FindTimeZoneById()` method?

What is a complete list of TimeZone IDs supported by C#'s `FindTimeZoneById()` method?

Barbara Streisand
Barbara StreisandOriginal
2025-01-13 15:26:47365browse

What is a complete list of TimeZone IDs supported by C#'s `FindTimeZoneById()` method?

C# FindTimeZoneById() Full list of time zone IDs supported by the method

Finding the complete list of all time zone IDs supported by the FindTimeZoneById() method in C# can be challenging. Here we provide a complete list, generated by a program that iterates over all available time zone IDs via the TimeZoneInfo.GetSystemTimeZones() method.

Procedure and results:

<code class="language-csharp">using System;

namespace TimeZoneIds
{
    class Program
    {
        static void Main(string[] args)
        {
            foreach (TimeZoneInfo z in TimeZoneInfo.GetSystemTimeZones())
            {
                Console.WriteLine(z.Id);
            }
        }
    }
}</code>

The results on a Windows 7 workstation are as follows:

Time zone ID:

  • Dateline Standard Time
  • UTC-11
  • Samoa Standard Time
  • Hawaiian Standard Time
  • Alaskan Standard Time
  • Pacific Standard Time (Mexico)
  • Pacific Standard Time
  • US Mountain Standard Time
  • Mountain Standard Time (Mexico)
  • Mountain Standard Time
  • Central America Standard Time
  • Central Standard Time
  • Central Standard Time (Mexico)
  • Canada Central Standard Time
  • SA Pacific Standard Time
  • Eastern Standard Time
  • US Eastern Standard Time
  • Venezuela Standard Time
  • Paraguay Standard Time
  • Atlantic Standard Time
  • Central Brazilian Standard Time
  • SA Western Standard Time
  • Pacific SA Standard Time
  • Newfoundland Standard Time
  • E. South America Standard Time
  • Argentina Standard Time
  • SA Eastern Standard Time
  • Greenland Standard Time
  • Montevideo Standard Time
  • UTC-02
  • Mid-Atlantic Standard Time
  • Azores Standard Time
  • Cape Verde Standard Time
  • Morocco Standard Time
  • UTC
  • GMT Standard Time
  • Greenwich Standard Time
  • W. Europe Standard Time
  • Central Europe Standard Time
  • Romance Standard Time
  • Central European Standard Time
  • W. Central Africa Standard Time
  • Namibia Standard Time
  • Jordan Standard Time
  • GTB Standard Time
  • Middle East Standard Time
  • Egypt Standard Time
  • Syria Standard Time
  • South Africa Standard Time
  • FLE Standard Time
  • Israel Standard Time
  • E. Europe Standard Time
  • Arabic Standard Time
  • Arab Standard Time
  • Russian Standard Time
  • E. Africa Standard Time
  • Iran Standard Time
  • Arabian Standard Time
  • Azerbaijan Standard Time
  • Mauritius Standard Time
  • Georgian Standard Time
  • Caucasus Standard Time
  • Afghanistan Standard Time
  • Ekaterinburg Standard Time
  • Pakistan Standard Time
  • West Asia Standard Time
  • India Standard Time
  • Sri Lanka Standard Time
  • Nepal Standard Time
  • Central Asia Standard Time
  • Bangladesh Standard Time
  • N. Central Asia Standard Time
  • Myanmar Standard Time
  • SE Asia Standard Time
  • North Asia Standard Time
  • China Standard Time
  • North Asia East Standard Time
  • Singapore Standard Time
  • W. Australia Standard Time
  • Taipei Standard Time
  • Ulaanbaatar Standard Time
  • Tokyo Standard Time
  • Korea Standard Time
  • Yakutsk Standard Time
  • Cen. Australia Standard Time
  • AUS Central Standard Time
  • E. Australia Standard Time
  • AUS Eastern Standard Time
  • West Pacific Standard Time
  • Tasmania Standard Time
  • Vladivostok Standard Time
  • Central Pacific Standard Time
  • New Zealand Standard Time
  • UTC 12
  • Fiji Standard Time
  • Kamchatka Standard Time
  • Tonga Standard Time

Please note that this list was generated on a specific Windows 7 workstation. Different operating systems or operating system versions may return slightly different results.

The above is the detailed content of What is a complete list of TimeZone IDs supported by C#'s `FindTimeZoneById()` method?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn