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.

In my C# code, I get the time using DateTime.Now, and again later. But now how can I get the difference between those two date objects in seconds as an integer value?

share|improve this question
3  
Keep in mind that the precision of DateTime is only about 16ms, so if having your time +/- 32 ms is too much variance yous houldn't be using DateTime, you should be using StopWatch. (And probably even then you should be using StopWatch.) – Servy Dec 27 '12 at 15:51
yes I am now using stopwatch. – omega Dec 27 '12 at 17:05

4 Answers

up vote 4 down vote accepted

Have you considered using a StopWatch object?

using System.Diagnostics;

Stopwatch watch = Stopwatch.StartNew();

// execute some code here....

parserWatch.Stop();

And then you can get the seconds like this:

int seconds = watch.ElapsedMilliseconds / 1000;

Or a TimeSpan object, if you want:

TimeSpan time = watch.Elapsed;
share|improve this answer
You want to divide by 1000, not multiply. – Jeremy Roman Dec 27 '12 at 15:58
oops thanks @jeremyRoman, you're absolutely right :) – Rui Jarimba Dec 27 '12 at 15:59
thanks this is a good solution. – omega Dec 27 '12 at 17:04
long seconds = (long)(then - now).TotalSeconds;

Subtracting two DateTimes will return a TimeSpan object, which has an integer Seconds property (between 0 and 60) and a floating-point TotalSeconds property.

share|improve this answer
I really, really like the idea that his application might run for more than Int32.MaxValue seconds, so we'd better use a long. No more unix-time overflow problems! – Jeppe Stig Nielsen Dec 29 '12 at 0:22

Another way using Subtract method:

 double second = then.Subtract(now).TotalSeconds;
share|improve this answer
 double starttime = Environment.TickCount;
  // do sth
 double endtime = Environment.TickCount;
 double millisecs = endtime - starttime;  // this is in milliseconds.
 double seconds = (millisecs / 1000);         //  this is in seconds.
share|improve this answer
TickCount can overflow (will do so once per 49.7 days (or 1.63 months) if computer is never restarted), so if by accident an overflow takes place during // do sth, you get a silly ouput. – Jeppe Stig Nielsen Dec 29 '12 at 0:34

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.