vote up 0 vote down star

I see that this question has been answered for Java, Javascript, and PHP, but not C#. So, how might one calculate the number of days between two dates in C#?

flag

1  
You don't see it because it took half a second to get 3 correct answers. – xcud Oct 22 at 13:51

4 Answers

vote up 7 vote down check

Assuming a and b are of type DateTime:

(a - b).TotalDays
link|flag
vote up 2 vote down

Use TimeSpan object which is the result of date substraction:

DateTime d1;
DateTime d2;
return (d1 - d2).TotalDays;
link|flag
vote up 1 vote down

I think this will do what you want:

DateTime d1 = DateTime.Now;
DateTime d2 = DateTime.Now.AddDays(-1);

TimeSpan t = d1 - d2;
double NrOfDays = t.TotalDays;
link|flag
vote up 1 vote down
    	DateTime xmas = new DateTime(2009, 12, 25);
	double daysUntilChristmas = xmas.Subtract(DateTime.Today).TotalDays;
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.