Subtracting two dates

sd_dracula picture sd_dracula · Jun 3, 2012 · Viewed 74.1k times · Source

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.

Answer

C.Evenhuis picture C.Evenhuis · Jun 3, 2012

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