I have two strings:
string one = \"13/02/09\"; string two = \"2:35:10 PM\";
I want to combine these two together and convert to a Dat
Dat
The problem is that the format string that you specify is not correct.
'HH' means a dwo-digit hour, but you have a single digit hour.
Use 'h' instead.
So the full format is 'dd/MM/yy h:mm:ss tt'