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
I had different format and the above answer did not work:
string one = "2019-02-06"; string two = "18:30";
The solution for this format is:
DateTime newDateTime = Convert.ToDateTime(one).Add(TimeSpan.Parse(two));
The result will be: newDateTime{06-02-2019 18:30:00}