L
lucius
I have a string[] of time values that look like this:
"16:00:00"
"18:00:00"
"22:30:30"
I need to convert/merge them to a List<DateTime> so they will be
{1753-01-01 16:00:00}
{1753-01-01 18:00:00}
{1753-01-01 23:30:30}
What is the best way to do that date/time math?
Thanks.
"16:00:00"
"18:00:00"
"22:30:30"
I need to convert/merge them to a List<DateTime> so they will be
{1753-01-01 16:00:00}
{1753-01-01 18:00:00}
{1753-01-01 23:30:30}
What is the best way to do that date/time math?
Thanks.