从包含DateTime的字符串中获取TimeZone



我有一个DateTime字符串"2014-10-09T07:01:39Z"。我想从这个字符串中获取时区。

"2014-10-09T07:01:39Z"表示2014年9月10日上午7:01:39+00:00

"2014-10-09T07:01:39"指2014年10月9日上午7:01:39+/-本地时区

var dof=DateTimeOffset.Parse("2014-10-09T07:01:39Z");
Console.WriteLine(dof.Offset);
//00:00:00
dof = DateTimeOffset.Parse("2014-10-09T07:01:39");
Console.WriteLine(dof.Offset);
//XX:00:00

相关内容

  • 没有找到相关文章

最新更新