BigInteger Explicit  Conversion (BigInteger to UInt32)

Converts a BigInteger to an unsigned integer.

Definition

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

Parameters

value  BigInteger
The BigInteger to convert.

Return Value

UInt32
A UInt32 that contains the 32 least significant bits of value.

Remarks

This method never throws an exception.

See Also