Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Twitter の API は、次のようなデータ値を返します。
created_at = "Thu Nov 14 15:50:44 +0000 2013"
それをC#の日付として解析するにはどうすればよいですか?
私は両方を試しました:
Convert.ToDateTime(item.created_at)
と
DateTime.Parse(item.created_at)
しかし、どちらも日付の解析に失敗します。アイデア?