[]
Make a double word by low and high word.
public static uint MakeDoubleWord(ushort lowWord, ushort highWord)
| 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)
| 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. |