Skip to content

Instantly share code, notes, and snippets.

@Warr1611
Created June 29, 2017 18:51
Show Gist options
  • Save Warr1611/5a59bd119d504a2d54501c74bfa9a94f to your computer and use it in GitHub Desktop.
Save Warr1611/5a59bd119d504a2d54501c74bfa9a94f to your computer and use it in GitHub Desktop.
[Convert DateTime to TimeZone] Convert a DateTime to a TimeZone given the timeZoneIdentifier. #datetime #timezone #csharp
var timeZoneIdentifier = GetTimeZoneIdentifier(); // Get the appropriate timezoneidentifier from somewhere
var now = TimeZoneInfo.ConvertTimeBySystemTimeZoneId(DateTime.Now, timeZoneIdentifier);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment