|
|
System.SByte Structure |
|
|
Description | |
|
The SByte structure holds integer values from -128 to 127.
Note that when converting to hexadecimal, the values are always expressed as positive values - no sign is used. This shows as follows :
-2 = x7E
-1 = x7F
+0 = x00
+1 = x01
+2 = x02
|
|
Methods | |
|
| CompareTo | Compares the current SByte value to another |
| Equals | Determines if the current SByte equals another |
| Parse | Converts a string representation of a SByte into a SByte value |
| ToString | Converts the current SByte value to a string |
|
|
|
Fields | |
|
MinValue | | Integer | | Smallest possible value : -128 (0x80 in hex) |
MaxValue | | Integer | | Largest possible value : 127 (0x7F in hex) |
|
Microsoft MSDN links | |
|
|
|
|
|
|