|
Description | |
|
The Int64 structure holds integer values from -9,223,372,036,854,775,808 to 9,223,372,036,854,775,807.
Note that when converting to hexadecimal, the values are always expressed as positive values - no sign is used. This shows as follows :
-2 = xFFFFFFFFFFFFFFFE
-1 = xFFFFFFFFFFFFFFFF
+0 = x0000000000000000
+1 = x0000000000000001
+2 = x0000000000000002
|
|
Methods | |
|
| CompareTo | Compares the current Int64 value to another |
| Equals | Determines if the current Int64 equals another |
| Parse | Converts a string representation of a Int64 into a Int64 value |
| ToString | Converts the current Int64 value to a string |
|
|
|
Fields | |
|
MinValue | | Byte | | Smallest possible value : -9,223,372,036,854,775,808 (0x8000000000000000 in hex) |
MaxValue | | Byte | | Largest possible value : 9,223,372,036,854,775,807 (0xFFFFFFFFFFFFFFFF in hex) |
|
Microsoft MSDN links | |
|
|
|
|