|   | WordLowDoubleWord Method | 
        
        
            Returns the unsigned low-double-word (UInt32) from an unsigned quad-word (UInt64).
            
        
        Namespace: GSFAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.257-beta+00aa2366fbb9ec75f636ebc7cfa610e3826a727c
 Syntax
Syntaxpublic static uint LowDoubleWord(
	this ulong quadWord
)
GSF.Word.LowDoubleWord = function(quadWord);
Parameters
- quadWord  UInt64
- 8-byte, 64-bit unsigned integer value.
Return Value
UInt32The low-order double-word of the specified 64-bit unsigned integer value.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type 
UInt64. When you use instance method syntax to call this method, omit the first parameter. For more information, see 
Extension Methods (Visual Basic) or 
Extension Methods (C# Programming Guide).
 Remarks
Remarks
            On little-endian architectures (e.g., Intel platforms), this will be the word value
            whose in-memory representation is the same as the left-most, least-significant-word
            of the integer value.
            
 See Also
See Also