WordMakeDoubleWord Method
Makes an unsigned double-word (UInt32) from two unsigned words (UInt16).
Namespace: GemstoneAssembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.128 -- Release Build+d050cfc5563c89a1188cc3c6b2d417530856f490
public static uint MakeDoubleWord(
ushort high,
ushort low
)
Public Shared Function MakeDoubleWord (
high As UShort,
low As UShort
) As UInteger
public:
static unsigned int MakeDoubleWord(
unsigned short high,
unsigned short low
)
Gemstone.Word.MakeDoubleWord = function(high, low);
- high UInt16
- High word.
- low UInt16
- Low word.
UInt32An unsigned 32-bit double-word made from the two specified unsigned 16-bit words.