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?
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.
|
Have you considered using a
And then you can get the seconds like this:
Or a
|
|||||||
|
|
Subtracting two |
|||
|
|
Another way using Subtract method:
|
|||
|
|
|
|||
|

DateTimeis only about 16ms, so if having your time +/- 32 ms is too much variance yous houldn't be usingDateTime, you should be usingStopWatch. (And probably even then you should be usingStopWatch.) – Servy Dec 27 '12 at 15:51