在Windows中,我们得到这样的时区列表:
ID Time zone name Display string
-- -------------- --------------
0 Dateline Standard Time (UTC-12:00) International Date Line West
110 UTC-11 (UTC-11:00) Coordinated Universal Time -11
200 Hawaiian Standard Time (UTC-10:00) Hawaii
300 Alaskan Standard Time (UTC-09:00) Alaska
更多here。
我使用此列表使用TimeZoneInfo
类从一个时区转换为另一个时区,该类接受上面列表中显示的时区名称。
实施例。
// Local time zone to UTC
var utcOffset = new DateTimeOffset(DateTime.UtcNow, TimeSpan.Zero);
var localTimeZone = TimeZoneInfo.FindSystemTimeZoneById(timezoneName); // here tz name can be any name from above table
var localOffset = new DateTimeOffset(date.Value, localTimeZone.GetUtcOffset(utcOffset));
DateTime utcDate = localOffset.UtcDateTime;
现在我遇到了SalesForce时区表示,如:
Time Zone Code Time Zone Name
-------------- --------------
GMT+14:00 Line Is. Time (Pacific/Kiritimati)
GMT+13:00 Phoenix Is.Time (Pacific/Enderbury)
GMT+13:00 Tonga Time (Pacific/Tongatapu)
GMT+12:45 Chatham Standard Time (Pacific/Chatham)
更多here。
我无法找到内置功能,无法使用上表中给出的time zone code
或time zone name
进行转换。
答案 0 :(得分:7)
如果您愿意坚持使用TimeZoneInfo
和DateTime
/ DateTimeOffset
,您可以使用Matt Johnson的TimeZoneConverter
图书馆来转换IANA ID(括号中的部分,例如Pacific / Kiritimati)到Windows系统时区ID。
string tz = TZConvert.IanaToWindows("America/New_York");
// Result: "Eastern Standard Time"
或者:
TimeZoneInfo tzi = TZConvert.GetTimeZoneInfo("America/New_York");
然而,需要注意的事项:
我个人建议使用我的Noda Time库,作为处理日期/时间的更简洁方式,但我承认,如果你有很多代码处理{{1已经,这可能不可行。