如何将以下日期字符串转换为 dateTime:
Fri, 18 Dec 2009 9:38 am PST
我试过了DateTime.Parse(string)
我收到以下错误:
The string was not recognized as a valid DateTime. There is an unknown word starting at index 25. System.SystemException {System.FormatException}
更新
我试图从雅虎获得天气,我试图得到这样的日期:
Date = DateTime.Parse(feed.Element(yWeatherNS + "condition").Attribute("date").Value),
我调试了它。date 属性是正确的(如上)。
谢谢。