How do I find the time difference between two datetime objects in ASP.NET?
|
The following example demonstrates how to do this:
When executed this prints "30" since there is a 30 minute difference between the date/times. The result of DateTime.Subtract(DateTime x) is a Timespan object which gives other useful properties. |
|||||||||
|
|
You want the
There are various methods for getting the days, hours, minutes, seconds and milliseconds back from this structure. |
|||
|
|
|
What you need is to use the DateTime classs Subtract method, which returns a TimeSpan.
|
|||
|
|
|
You need to use a TimeSpan. Here is some sample code:
|
|||||||
|
|
The way I usually do it is subtracting the two DateTime and this gets me a TimeSpan that will tell me the diff. Here's an example:
|
|||
|
|
|
IF they are both UTC date-time values you can do Otherwise your chance of getting the correct answer in every single possible case is zero. |
|||
|
|
