How is it possible that TimeSpan with the same amount of tikcs gives different TotalDays values? Below is what i see on debuger just after running my app.
Ticks: 25920000000000
TotalDays: 30.0
After few more clicks when i hit the breakpoint at the same place the values looks like that:
Ticks: 25920000000000
TotalDays: 29.999999999999996
Since i used total days value later it hit me that once its 30 and the other time 29 for the 'same' TimeSpan Ticks ?!
This hapens only on my Corei7 (win7 x64) work station on 'AnyCpu' on .NET 3.5 Framework Configuration (on x86 is always 30, also on 3 other Work station 29 does not occurred). Any ideas?