WordMakeQuadWord Method
Makes an unsigned quad-word (UInt64) from two unsigned double-words (UInt32).
Namespace: GemstoneAssembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.137 -- Release Build+84492f84208b356bfb930d6c506a4bce06d2449a
public static ulong MakeQuadWord(
uint high,
uint low
)
Public Shared Function MakeQuadWord (
high As UInteger,
low As UInteger
) As ULong
public:
static unsigned long long MakeQuadWord(
unsigned int high,
unsigned int low
)
Gemstone.Word.MakeQuadWord = function(high, low);
- high UInt32
- High double-word.
- low UInt32
- Low double-word.
UInt64An unsigned 64-bit quad-word made from the two specified unsigned 32-bit double-words.