Get timezone from DateTime - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T03:19:01Zhttp://stackoverflow.com/feeds/question/576740http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/576740/get-timezone-from-datetime2Get timezone from DateTimedbkk2009-02-23T06:53:47Z2009-02-24T06:56:26Z
<p>Does the .Net DateTime contain information about time zone where it was created? </p>
<p>I have a library parsing DateTime from a format that has "+zz" at the end, and while it parses correctly and adjusts a local time, I need to get what the specific time zone was from the DateTime object. </p>
<p>Is this possible at all? All I can see is DateTime.Kind, which specifies if time is local or UTC.</p>
http://stackoverflow.com/questions/576740/get-timezone-from-datetime/576755#5767554Answer by Gerrie Schenck for Get timezone from DateTimeGerrie Schenck2009-02-23T07:03:57Z2009-02-23T07:03:57Z<p>No.</p>
<blockquote>
<p><em>A developer is responsible for keeping track of time-zone information associated with a DateTime value via some external mechanism.</em></p>
</blockquote>
<p>A quote from an excellent article <a href="http://msdn.microsoft.com/en-us/library/ms973825.aspx" rel="nofollow">here</a>.
A must read for every .Net developer.</p>
<p>So my advice is to write a little wrapper class that suits your needs.</p>
http://stackoverflow.com/questions/576740/get-timezone-from-datetime/576757#5767571Answer by tehvan for Get timezone from DateTimetehvan2009-02-23T07:05:10Z2009-02-23T07:05:10Z<p>From the API (<a href="http://msdn.microsoft.com/en-us/library/system.datetime_members" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.datetime_members</a>(VS.71).aspx) it does not seem it can show the name of the time zone used.</p>
http://stackoverflow.com/questions/576740/get-timezone-from-datetime/576762#5767626Answer by Jon Skeet for Get timezone from DateTimeJon Skeet2009-02-23T07:07:30Z2009-02-23T07:07:30Z<p>DateTime itself contains no real timezone information. It <em>may</em> know if it's UTC or local, but not what local really means.</p>
<p>DateTimeOffset is somewhat better - that's basically a UTC time and an offset. However, that's still not really enough to determine the timezone, as many different timezones can have the same offset at any one point in time. This sounds like it may be good enough for you though, as all you've got to work with when parsing the date/time is the offset. </p>
<p>The support for time zones as of .NET 3.5 is a lot better than it was, but I'd really like to see a standard "ZonedDateTime" or something like that - a UTC time and an actual time zone. It's easy to build your own, but it would be nice to see it in the standard libraries.</p>
http://stackoverflow.com/questions/576740/get-timezone-from-datetime/580719#5807193Answer by Cheeso for Get timezone from DateTimeCheeso2009-02-24T06:56:26Z2009-02-24T06:56:26Z<p>There is a <a href="http://www.codeplex.com/publicdomain" rel="nofollow">public domain TimeZone library for .NET</a>. Really useful. It will answer your needs.</p>
<p>Solving the general-case timezone problem is harder than you think. </p>