Example #1
0
        public static ZonedDateTime FromInstantToTimezone(this Instant instant, string timezoneName)
        {
            var timezone = DateTimeZoneProviders.Tzdb[timezoneName];

            return(instant.FromInstantToTimezone(timezone));
        }