次の日付文字列を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}
アップデート
私はyahooから天気を取得しようとしました、そして私はこのような日付を取得しようとしました:
Date = DateTime.Parse(feed.Element(yWeatherNS + "condition").Attribute("date").Value),
デバッグしました。日付属性は正しいです(上記のように)。
ありがとう。