I saw in MSDN documents that the maximum value of Int32 is 2,147,483,647, hexadecimal 0x7FFFFFFF.
0x7FFFFFFF
I think, if it\'s Int32 it should store 32-bi
Int32
You are not considering the negative numbers. Int32 have the sign.
From MSDN: http://msdn.microsoft.com/en-us/library/system.int32.minvalue.aspx The MinValue is -2,147,483,648; that is, hexadecimal 0x80000000.
MinValue
-2,147,483,648
0x80000000