Skip to content

Instantly share code, notes, and snippets.

@alexandrebl
Created July 3, 2020 17:46
Show Gist options
  • Select an option

  • Save alexandrebl/ba9d9f3a18346d33be27f4f3c76b2e8b to your computer and use it in GitHub Desktop.

Select an option

Save alexandrebl/ba9d9f3a18346d33be27f4f3c76b2e8b to your computer and use it in GitHub Desktop.
Get Time Zone Name CSharp
using System;
public class Program
{
public static void Main()
{
var tzis = TimeZoneInfo.GetSystemTimeZones();
foreach (var tzi in tzis)
{
Console.WriteLine(string.Format("{0}:::{1}", tzi.Id, tzi.DisplayName));
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment