任何人都可以帮助理解这一点。 Microsoft 3.5 中的 TimeZoneInfo 类告诉我以下 GMT 日期不是东部时区的夏令时,但它是。
// Get Eastern Timezone
TimeZoneInfo tzEasternZone = TimeZoneInfo.FindSystemTimeZoneById("Eastern Standard Time");
// Convert to EST
DateTime easternTime = TimeZoneInfo.ConvertTime(DateTime.Parse("2009-11-01T05:00:00Z"), tzEasternZone);
// Daylight saving IS in effect on this date, but Microsoft doesn't think so
Boolean isDaylight = easternTime.IsDaylightSavingTime();
这里有 2 个网站说它处于夏令时:
http://www.timeanddate.com/worldclock/converted.html?month=11&day=1&year=2009&hour=5&min=0&sec=0&p1=0&p2=198
http://www.timezoneconverter.com/cgi-bin/tzc.tzc
最佳答案
参见:TimeZoneInfo.IsDaylightSaving
你也可以看看这个...
TimeZoneInfo.GetAmbiguousTimeOffsets Method
返回有关不明确日期和时间可以映射到的可能日期和时间的信息。
关于.NET TimeZoneInfo 关于夏令时的错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4988693/