Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have to subtract two dates and divide it by the number of cells

Suppose: 
DateTime d1 = 10/6/2010 12:00:00 AM
DateTime d2  = 10/9/2010 11:59:59 PM
#Cells = 5

Now how do I find the delta? Is the delta a TimeSpan? delta = (d2.subtract(d1))/5? This does not work.

Pls suggest Sun

share|improve this question

3 Answers

up vote 0 down vote accepted
TimeSpan delta = TimeSpan.FromTicks((d2.Subtract(d1).Ticks) / 5);
share|improve this answer
delta = TimeSpan.FromSeconds((d2 - d1).TotalSeconds / 5)
share|improve this answer
d2.Subtract(d1)

That results in a DateTime out which can not be divided by 5.

var ts = d1 - d2;

ts will have a Type of TimeSpan.

You can then get your delta using this TimeSpan since you haven't specified what Type delta is you can have it be a double representing 1/5 of seconds or 1/5 of minutes or whatever.

var delta_sec = ts.TotalSeconds / 5.0;
var delta_min = ts.TotalMinutes / 5.0;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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