I have a datetime in the following format: Wed, 03 September 2013 02:05:50 GMT
Now when i try to parse this string to a datetime object using a mask, i get a formatexception
DateTime parsed = DateTime.ParseExact("Wed, 03 September 2013 02:05:50 GMT", "ddd, dd MMMM yyyy HH:mm:ss zzz", CultureInfo.InvariantCulture);
I did check DateTime.Now with the above mask, and it matches the date i want to parse exactly. How can i parse this date?