如何解析utc日期

时间:2011-09-20 07:01:51

标签: c# datetime

如何解析日期

  

星期六8月22日14:00:00 UTC +200 2009

我尝试使用

  

DateTime.ParseExact(“Sat Aug 22 14.00:00 UTC +200 2009”,“ddd MMM d HH:mm:ss UTC yyyy”,null);

1 个答案:

答案 0 :(得分:3)

试试这个,它有效。 14岁以后,你有“。” - 将其更改为“:”

DateTime.ParseExact("Sat Aug 22 14:00:00 UTC+0200 2009", 
                    "ddd MMM d HH:mm:ss UTCzzzz yyyy", null);

Reference