从包含DateTime的字符串中获取TimeZone
本文关键字:获取 TimeZone 字符串 包含 DateTime | 更新日期: 2023-09-27 18:28:09
我有一个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