I’ve two DateTime variable regardless of which is greater than the other in time.
Datetime date1, date2;
How should I find the positive difference of both on “days” basis?
(date1-date2) might give positive/negative result but I also need the no: of days difference.
Assume both are on the same TimeZone
1 Answer