UInt128   Conversion (UInt128 to UInt64)
            Converts an unsigned 128-bit integer into an unsigned 64-bit integer.
            
Namespace: Meta.Numerics.ExtendedAssembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
public static explicit operator ulong (
	UInt128 u
)
Public Shared Narrowing Operator CType ( 
	u As UInt128
) As ULong
static explicit operator unsigned long long (
	UInt128 u
)
F# does not support the declaration of new casting operators.
- u  UInt128
 - The unsigned 128-bit integer.
 
UInt64The unsigned 64-bit integer with the same lower 64 bits.
 This is x narrowing cast, which discards high-order bits if
            the 128-bit integer is greater than MaxValue.