14
1
using System;
2
3
public class Program
4
{
5
public static void Main()
6
{
7
var tzis = TimeZoneInfo.GetSystemTimeZones();
8
9
foreach (var tzi in tzis)
10
{
11
Console.WriteLine(string.Format("{0}:::{1}", tzi.Id, tzi.DisplayName));
12
}
13
}
14
}
Cached Result