Closed julipur closed 7 years ago
Thank you for your question @julipur
Int32.Max in .NET is 2147483647. The current time since epoch is 1478623294. We will only reach the Int32.Max in year 2038.
2147483647
1478623294
I think it will be more accurate if we have it as UInt32.
So as long as I cast it down, I'm good. Thanks.
@julipur Yes 👍 but it might throw an Exception if you try and cast a larger value that could be fit into an Int32. It all depends on your casting method.
casting
Thank you for your question @julipur
Int32.Max in .NET is
2147483647
. The current time since epoch is1478623294
. We will only reach the Int32.Max in year 2038.I think it will be more accurate if we have it as UInt32.