BigInteger Explicit  Conversion (BigInteger to Int32)

Converts a BigInteger to a Int32 value.

Definition

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

Parameters

value  BigInteger
The BigInteger to convert.

Return Value

Int32
The signed 32 bit integer that is contained in the 32 least significant bits of value.

Remarks

This method never throws an exception.

See Also