When a date string has the day of the week attached to it, TryParse fails:
DateTime d;
string dateString = "Tuesday May 1, 2012 9:00 AM";
return DateTime.TryParse(dateString, out d); // returns false
What is the best way to deal with this so that I can safely determine it IS a date, and furthermore convert it to such?