P
Patrick B
Say I have three DateTime variables:
DateTime A;
DateTime B;
DateTime C;
How can I assign to C just the date part of A and just the time part of B?
Something like this...
C = A.Date + B.TimeOfDay;
Except that isn't it.
DateTime A;
DateTime B;
DateTime C;
How can I assign to C just the date part of A and just the time part of B?
Something like this...
C = A.Date + B.TimeOfDay;
Except that isn't it.