我需要将UTC
日期字符串转换为DateTimeOffsets
.
这必须使用与计算机时区不同的时区。 例如,当前计算机时区是 +02:00,但我想创建一个偏移量为 -4:00 的 DateTimeOffset。
我已经在 stackoverflow 上阅读了很多问题,但没有一个能解决我的问题。
这就是我需要做的:
输入: “2012-11-20T00:00:00Z”
输出: DateTimeOffset 与:
- UtcDateTime 2012-11-20 00:00
- 定义时区的正确 Utc 偏移量(在本例中为 01:00)
- LocalDateTime: 2012-11-20 01:00 (= UtcDateTime + Offset)
当然必须考虑夏令时。
编辑:为了让事情更清楚,请尝试完成以下代码片段:
DateTimeOffset result;
const string dateString = "2012-11-20T00:00:00Z";
var timezone = TimeZoneInfo.FindSystemTimeZoneById("W. Europe Standard Time"); //this timezone has an offset of +01:00:00 on this date
//do conversion here
Assert.AreEqual(result.Offset, new TimeSpan(1, 0, 0)); //the correct utc offset, in this case +01:00:00
Assert.AreEqual(result.UtcDateTime, new DateTime(2012, 11, 20, 0, 0, 0)); //equals the original date
Assert.AreEqual(result.LocalDateTime, new DateTime(2012, 11, 20, 1, 0, 0));