Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Subtracting two dates

I have two calendars and each return a DateTime from calendar.SelectedDate.

How do I go about subtracting the two selected dates from each other, giving me the amount of days between the two selections?

There is a calendar.Subtract() but it needs a TimeSpan instead of DateTime.

like image 456
sd_dracula Avatar asked Jun 03 '12 15:06

sd_dracula


1 Answers

You can use someDateTime.Subtract(otherDateTime), this returns a TimeSpan which has a TotalDays property.

like image 151
C.Evenhuis Avatar answered Sep 22 '22 19:09

C.Evenhuis