I have a strange problem:
string format = @"ddd MMM dd hh:mm:ss \G\M\Tzzz yyyy";
__timestamp = "Fri Apr 09 17:02:00 GMT-0500 2010";
DateTime.ParseExact(__timestamp, format, new CultureInfo("en"));
returning FormatException = “String was not recognized as a valid DateTime.”
but that code going without exceptions:
string format = @"ddd MMM dd hh:mm:ss \G\M\Tzzz yyyy";
__timestamp = "Sat Apr 10 01:27:00 GMT-0500 2010";
DateTime.ParseExact(__timestamp, format, new CultureInfo("en"));
From 30k of date parsing of that format, around 50% of that failed with that exception…
Anyone know why?
it should be
HHnothh. You’re in the 24-hr format.Valid:
Sat Apr 10 01:27:00 GMT-0500 2010