Created
November 5, 2023 07:10
-
-
Save jskeet/c4dcb388d828dc2a1e8f4773e0088f45 to your computer and use it in GitHub Desktop.
Program.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using NodaTime; | |
using System; | |
using System.Globalization; | |
Console.WriteLine(TimeZoneInfo.Local.Id); | |
Console.WriteLine(DateTimeZoneProviders.Tzdb.GetSystemDefault().Id); | |
Environment.SetEnvironmentVariable("TZ", "Europe/Paris"); | |
TimeZoneInfo.ClearCachedData(); | |
Console.WriteLine(TimeZoneInfo.Local.Id); | |
Console.WriteLine(DateTimeZoneProviders.Tzdb.GetSystemDefault().Id); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment