BigInteger.DivRem Method

Computes the quotient and remainder of two BigInteger numbers.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static BigInteger DivRem(
	BigInteger left,
	BigInteger right,
	out BigInteger r
)

Parameters

left  BigInteger
The dividend.
right  BigInteger
The divisor.
r  BigInteger
On return, the remainder.

Return Value

BigInteger
The quotient of left and right.

See Also