About 1,580,000 results
Open links in new tab
  1. java - Correct ZoneId for eastern time (ET): either "US/Eastern" or ...

    Jun 25, 2019 · Link America/New_York US/Eastern ...which suggests the two are aliases (altough ZoneId#equals doesn't return true for them). Also, in northamerica they have: # US eastern time, …

  2. List of Timezone IDs for use with FindTimeZoneById() in C#?

    Find a comprehensive list of timezone IDs for use with the FindTimeZoneById() method in C#. Explore examples and solutions for implementation.

  3. How to get python to display the current Eastern time?

    How can I get Python to display the time in Eastern? I've looked over the python documentation but it's pretty confusing. I'm using Python 3.

  4. What is 2pm eastern time in central zone? - Answers

    May 28, 2024 · Eastern is the earliest, and each zone is one hour behind the one before it. So if it is 2pm in Eastern, it's 1pm Central, 12pm Mountain, and 11am Pacific.

  5. c# - How to convert DateTime to Eastern Time - Stack Overflow

    May 13, 2011 · How to convert DateTime to Eastern Time Asked 14 years, 7 months ago Modified 2 years, 9 months ago Viewed 125k times

  6. What time is 9am pacific time in the eastern time zone?

    May 23, 2024 · Each is one hour later than the last. For example, if it's 3 PM Pacific Time, then it's 4 PM Mountain Time, 5 PM Central Time, and 6 PM Eastern Time.

  7. How to convert from UTC to EST in SQL? - Stack Overflow

    Aug 10, 2022 · I am currently using: sample_start_time AT TIME ZONE 'UTC' AT TIME ZONE 'Eastern Standard Time' AS sample_start_time_est from: Convert Datetime column from UTC to local time in …

  8. Get eastern time in c# without converting local time

    Dec 11, 2014 · I know there are bunch of solutions on converting timezone to timezone, but what I'd like to know whether we can get eastern time without making conversion from our local time.

  9. How to convert a datetime to specific timezone in c#?

    Mar 2, 2013 · TimeZoneInfo timeZone = TimeZoneInfo.FindSystemTimeZoneById("Eastern Standard Time"); var time = timeZoneInfo.ConvertTime(gmTime, timeZone); When I debug the value of time, …

  10. How to set TimeZone using Powershell - Stack Overflow

    Nov 20, 2010 · 12 At least in newer versions of Powershell (5.1 and later), there is a cmdlet. See the docs. Set-TimeZone "Eastern Standard Time" Older versions can find the script here.