BigFloat.Modulus Operator

Returns the remainder after dividing one BigFloat number by another.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static BigFloat operator %(
	BigFloat dividend,
	BigFloat divisor
)

Parameters

dividend  BigFloat
divisor  BigFloat

Return Value

BigFloat
The remainder after dividing dividend by divisor. The result has the same sign as dividend.

Exceptions

ArgumentNullException

dividend is null.

-or-

divisor is null.

See Also