How to combine two strings (date and time) to a single DateTime

后端 未结 9 1092
刺人心
刺人心 2021-01-17 11:34

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

9条回答
  •  太阳男子
    2021-01-17 12:07

    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'

提交回复
热议问题