[]
Get the lower word from a unsigned integer value.
public static ushort LowWord(uint value)
Type | Name | Description |
---|---|---|
uint | value | An uint indicates the unsigned integer value. |
Type | Description |
---|---|
ushort | Return the lower word as result. |
Get the lower word from a integer value.
public static short LowWord(int value)
Type | Name | Description |
---|---|---|
int | value | An int indicates the integer value. |
Type | Description |
---|---|
short | Returns the lower word as result. |
Get the higher word from a nint value.
public static short LowWord(nint intValue)
Type | Name | Description |
---|---|---|
nint | intValue | An unint indicates the nint value. |
Type | Description |
---|---|
short | Returns the higher word as result. |