BigInteger Explicit  Conversion (BigInteger to UInt64)

Converts a BigInteger to a long unsigned integer.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static explicit operator ulong (
	BigInteger value
)

Parameters

value  BigInteger
The BigInteger to convert.

Return Value

UInt64
A UInt64 that contains the 64 least significant bits of value.

Remarks

This method never throws an exception.

See Also