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.147 -- Release Build+759c9d29b79c81f10905de8f58b653be932045f0
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.