Trying to convert a string like this Dec 1, 2016 1:48 PM CST
into a DateTime object.
Convert.ToDateTime(story.AddedDateString);
Didn't work, nor did I really expect it to.
System.FormatException: The string was not recognized as a valid DateTime. There is an unknown word starting at index 21.
is the error message I get. Wondering if I can tell it the format before trying to convert?