I am trying to create a DateTime from a custom string however I am getting the error:
String was not recognized as a valid DateTime.
DateTime date = DateTime.ParseExact("Thu Feb 23 23:36:01 EST 2017", "ddd MMM dd hh:mm:ss K yyyy", CultureInfo.InvariantCulture);
Any suggestions on where I am going wrong?