How do I get the time difference between two DateTime objects using C#?
DateTime
IF they are both UTC date-time values you can do TimeSpan diff = dateTime1 - dateTime2;
TimeSpan diff = dateTime1 - dateTime2;
Otherwise your chance of getting the correct answer in every single possible case is zero.