What is the difference between Int32 and UInt32?
Int32
UInt32
If they are the same with capacity range capabilities, the question is for what reason U
U
An integer is -2147483648 to 2147483647 and an unsigned integer is 0 to 4294967295.
This article might help you.