Last active
November 6, 2017 10:49
-
-
Save turboBasic/96a2457500b5e87b69a3e239ad6c89bc to your computer and use it in GitHub Desktop.
The list of .Net time zones with offset to UTC
This file contains hidden or 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
# result: https://runkit.io/turbobasic/dotnettimezones/branches/master | |
[System.TimeZoneInfo]::GetSystemTimeZones() | | |
Select -property Id, @{ Name = 'BaseUtcOffsetHours'; Expression = {$_.BaseUtcOffset.TotalMinutes / 60} } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment