[]
Make a double word by low and high word.
public static uint MakeDoubleWord(ushort lowWord, ushort highWord)
Public Shared Function MakeDoubleWord(lowWord As UShort, highWord As UShort) As UInteger
| Type | Name | Description |
|---|---|---|
| ushort | lowWord | An ushort indicates the low word of the long. |
| ushort | highWord | An ushort indicates the high word of the long. |
| Type | Description |
|---|---|
| uint | An uint indicates the long. |
Make a double word by low and high word.
public static int MakeDoubleWord(short lowWord, short highWord)
Public Shared Function MakeDoubleWord(lowWord As Short, highWord As Short) As Integer
| Type | Name | Description |
|---|---|---|
| short | lowWord | A short indicates the low word of the long. |
| short | highWord | A short indicates the high word of the long. |
| Type | Description |
|---|---|
| int | An int indicates the long. |