G
Guest
The documentation for TickCount states quite plainly that it wraps from its
max value of Int32.MaxValue to zero at the wraparound point (approx. every
24.9 days). I did build a longer term timer based on this assumption, but
when a long term test of the product stopped working at ~25 days, and I
attached a debugging session of VS to the app, I could have sworn that I saw
TickCount return a large negative value. Unfortunately, VS locked soon after,
brought the app down with it, and the machine was rebooted. I don't have any
other machines around here that have been running for > 25 days to further
test the observation.
So the question is: does TickCount wrap to Int32.MinValue (and the
documentation is wrong) or to 0 (and I was mistaken in my observation) ?
Thanks
Lionel
max value of Int32.MaxValue to zero at the wraparound point (approx. every
24.9 days). I did build a longer term timer based on this assumption, but
when a long term test of the product stopped working at ~25 days, and I
attached a debugging session of VS to the app, I could have sworn that I saw
TickCount return a large negative value. Unfortunately, VS locked soon after,
brought the app down with it, and the machine was rebooted. I don't have any
other machines around here that have been running for > 25 days to further
test the observation.
So the question is: does TickCount wrap to Int32.MinValue (and the
documentation is wrong) or to 0 (and I was mistaken in my observation) ?
Thanks
Lionel