BigInteger.Division Operator

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

Division(BigInteger, BigInteger) Divides one BigInteger by another and returns the result.
Division(BigInteger, Int32) Divides one BigInteger by another and returns the result.

Division(BigInteger, BigInteger) Operator

Divides one BigInteger by another and returns the result.
C#
public static BigInteger operator /(
	BigInteger left,
	BigInteger right
)

Parameters

left  BigInteger
A BigInteger.
right  BigInteger
A BigInteger.

Return Value

BigInteger
The quotient of left and right.

Division(BigInteger, Int32) Operator

Divides one BigInteger by another and returns the result.
C#
public static BigInteger operator /(
	BigInteger left,
	int right
)

Parameters

left  BigInteger
A BigInteger.
right  Int32
A BigInteger.

Return Value

BigInteger
The quotient of left and right.

See Also