我从数据库中获取一些日期时间(ExactDate)。这些时间是在美国时区,我需要将它们转换为欧盟时区。
但是,如果我使用:
ExactDate = (DateTime)dr["CREATE_DATE"];
// change exact date to european time
TimeZoneInfo info;
info = TimeZoneInfo.FindSystemTimeZoneById("US Mountain Standard Time");
ExactDate = TimeZoneInfo.ConvertTime(ExactDate,info);
日期未正确转换,因为我的计算机将ExactDate
视为欧洲日期。
你知道我该怎么解决这个问题吗?
尝试将日期从其他时区转换为UTC
喜欢
ExactDate = TimeZoneInfo.ConvertTimeToUtc(ExactDate,info);
一旦你有相应的UTC时间,你可以稍后使用.ToLocal
获得欧洲时间
希望这就是你想要的。