UtilWin32MakeWord Method
Creates a (16-Bit Unsigned Integer) WORD value from a LOBYTE and a HIBYTE.
Namespace: DevCase.Win32Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static ushort MakeWord(
byte loByte,
byte hiByte
)
Public Shared Function MakeWord (
loByte As Byte,
hiByte As Byte
) As UShort
Dim loByte As Byte
Dim hiByte As Byte
Dim returnValue As UShort
returnValue = UtilWin32.MakeWord(loByte,
hiByte)
public:
static unsigned short MakeWord(
unsigned char loByte,
unsigned char hiByte
)
static member MakeWord :
loByte : byte *
hiByte : byte -> uint16
No code example is currently available or this language may not be supported.
- loByte Byte
-
The low-order byte.
- hiByte Byte
-
The high-order byte.
UInt16
The resulting WORD value.
This is a code example.
No code example is currently available or this language may not be supported.
Dim value as UShort = MakeWord(Byte.MaxValue, Byte.MaxValue)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.