C# FindTimeZoneById()
メソッド
紹介:
C# でタイム ゾーンを扱う場合、TimeZoneInfo
クラスはタイム ゾーン情報にアクセスして操作するための便利な方法を提供します。 FindTimeZoneById()
メソッドを使用すると、識別子によって特定のタイムゾーンの TimeZoneInfo
オブジェクトを取得できます。ただし、サポートされているすべてのタイムゾーン識別子の完全なリストを見つけるのは困難な場合があります。
アクセスタイムゾーン ID リスト:
タイムゾーン ID の完全なリストを取得するには、TimeZoneInfo
クラスの GetSystemTimeZones()
メソッドを使用します。このメソッドは、オペレーティング システムでサポートされているすべてのタイム ゾーンを含む IEnumerable<TimeZoneInfo>
コレクションを返します。
コード例:
次のコード スニペットは、GetSystemTimeZones()
メソッドを使用してすべてのタイム ゾーン ID のリストを出力する方法を示しています。
<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>
結果:
Windows 7 ワークステーションで実行すると、上記のコードは次のタイム ゾーン ID のリストを出力します:
<code>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</code>
追加メモ:
サポートされているタイムゾーン ID のリストは、オペレーティング システムとそのアップデートによって異なる場合があります。最新のリストに確実にアクセスするには、タイム ゾーン識別子の完全なデータベースを管理するライブラリまたはオンライン リソースの使用を検討してください。以上がC# の `FindTimeZoneById()` で使用するタイム ゾーン ID の完全なリストを取得するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。