Delphi:

SecondsBetween(StrToDateTime('16/02/2009 11:25:34 p.m.'), StrToDateTime('1/01/2005 12:00:00 a.m.'));

130289133

C#:

TimeSpan span = DateTime.Parse("16/02/2009 11:25:34 p.m.").Subtract(DateTime.Parse("1/01/2005 12:00:00 a.m."));

130289134

It's not consistent either. Some dates will add up the same, ie..

TimeSpan span = DateTime.Parse("16/11/2011 11:25:43 p.m.").Subtract(DateTime.Parse("1/01/2005 12:00:00 a.m."));

SecondsBetween(StrToDateTime('16/11/2011 11:25:43 p.m.'), StrToDateTime('1/01/2005 12:00:00 a.m.'));

both give

216905143

The total amount of seconds is actually being used to encode data, and I'm trying to port the application to C#, so even one second completely throws everything off.

Can anybody explain the disparity? And is there a way to get c# to match delphi?

Edit: In response to suggestions that it might be leap second related: Both date ranges contain the same amount of leap seconds (2), so you would expect a mismatch for both. But instead we're seeing inconsistency

16/02/2009 - 1/01/2005 = Delphi and C# calculate a different total seconds

16/11/2011 - 1/01/2005 = They calculate the same total seconds
link|improve this question

Interesting problem but you should ask a question. – Austin Salonen Dec 16 '11 at 3:40
Perhaps the two systems deal with leap seconds differently? – dasblinkenlight Dec 16 '11 at 3:43
@Austin Salonen I added the question part for you :P – NoPyGod Dec 16 '11 at 3:45
Do you have a link to the documentation for SecondsBetween? – Austin Salonen Dec 16 '11 at 4:15
1  
@NoPyGod i found this QC 59310 the bug was fixed in Delphi XE. – RRUZ Dec 16 '11 at 4:31
show 5 more comments
feedback

3 Answers

up vote 7 down vote accepted

The issue it seems related to this QC 59310, the bug was fixed in Delphi XE.

link|improve this answer
1  
Given this, how would I emulate this bug in C#? I am trying to port an application and if I'm one second off it throws the whole decoding part of the application into disarray. Thanks for finding this information, very helpful. – NoPyGod Dec 16 '11 at 5:36
@NoPyGod You cannot eliminate it in the C#, because it is on Delphi's side; you can re-introduce it there, but it may be too much of a hack. Try using "days between" (assuming there is such a method), and then calculate the difference between two date-less times manually. – dasblinkenlight Dec 16 '11 at 15:05
feedback

One will likely deal with Leap Seconds. However, .NET does not as far as I'm aware.

link|improve this answer
Both date ranges contain the same amount of leap seconds, and yet one of them is calculated correctly. – NoPyGod Dec 16 '11 at 3:51
@NoPyGod, if one accounts for leap seconds and the other does not, it would result in a discrepancy. – Mark Ransom Dec 16 '11 at 4:14
I compared the results in both languages for two different date ranges. In one case the results matched. Both date ranges contain the same number of leap seconds. – NoPyGod Dec 16 '11 at 4:25
feedback

You don't mention how you convert the c# TimeSpan into a number. The TotalSeconds property is a floating point value - perhaps it's a rounding problem in the double to int conversion?

link|improve this answer
just with a regular cast (int) – NoPyGod Dec 16 '11 at 4:19
The value as a double is still incorrect. But you're absolutely right, I shouldn't have omitted that detail. – NoPyGod Dec 16 '11 at 4:19
feedback

Your Answer

 
or
required, but never shown

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