|
Description | |
|
The UInt32 structure holds positive integer values from 0 to 4,294,967,295.
Note that when converting to Hexadecimal, xFFFFFFFF for UInt32 means 4,294,967,295, but for Int32 it means -1.
|
|
Methods | |
|
| CompareTo | Compares the current UInt32 value to another |
| Equals | Determines if the current UInt32 equals another |
| Parse | Converts a string representation of a UInt32 into a UInt32 value |
| ToString | Converts the current UInt32 value to a string |
|
|
|
Fields | |
|
MinValue | | Integer | | Smallest possible value : 0 (0x00000000 in hex) |
MaxValue | | Integer | | Largest possible value : 4,294,967,295 (0xFFFFFFFF in hex) |
|
Microsoft MSDN links | |
|
|
|
|