Hi I have the following method and I\'m passing it the value \"07 Jan 2014 13:48:46\" and from what I understand the TryParseExact should be matching the format \"dd MMM yyyy hh
Because none of your format have 24-hour clock.
hh specifier is for 01 to 12. It doesn't have 13 as an hour.
01
12
13
Use HH specifier instead which is for 00 to 23.
00
23
For more information, take a look at;