While reading this question and its replies Environment.TickCount is not enough I got confused.
They are saying that Environment.TickCount
works for 48-49 days (OP) (and @Cody Gray says 25 days), but its an int
value, so can store up to 2,147,483,647.
Now, 1 millisecond contains 10,000 ticks, that means it can hold up to 214,748.3+ milliseconds which is 214+ seconds only, which is less than 4 minutes.
Am I missing something?
Btw, now there is Environment.TickCount64
which provides a 64bit value.