[]
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 IntPtr value.
public static short LowWord(IntPtr intValue)
| Type | Name | Description |
|---|---|---|
| IntPtr | intValue | An unint indicates the IntPtr value. |
| Type | Description |
|---|---|
| short | Returns the higher word as result. |