|
Description | |
|
The Int32 structure holds integer values from -2,147,483,648 to 2,147,483,647.
Note that when converting to hexadecimal, the values are always expressed as positive values - no sign is used. This shows as follows :
-2 = xFFFFFFFE
-1 = xFFFFFFFF
+0 = x00000000
+1 = x00000001
+2 = x00000002
|
|
Methods | |
|
| CompareTo | Compares the current Int32 value to another |
| Equals | Determines if the current Int32 equals another |
| Parse | Converts a string representation of a Int32 into a Int32 value |
| ToString | Converts the current Int32 value to a string |
|
|
|
Fields | |
|
MinValue | | Byte | | Smallest possible value : >-2,147,483,648 (0x80000000 in hex) |
MaxValue | | Byte | | Largest possible value : 2,147,483,647 (0x7FFFFFFF in hex) |
|
Microsoft MSDN links | |
|
|
|
|