I am trying to parse a date in c# and have the following line of code
DateTime.ParseExact(DateSelected, \"ffffd MMM dd HH:mm:ss zzz yyyy\", Culture)
Following this previous question, zone abbreviations are not recognized. Try this:
DateTime parsed = DateTime.ParseExact(
"Tue Feb 16 12:36:41 CST 2010".Replace("CST", "+02:00"),
"ffffd MMM dd HH:mm:ss zzz yyyy",
new CultureInfo("en-GB"));
This links can also be useful: