Big Float.Modulus Operator
Returns the remainder after dividing one BigFloat number by another.
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
C#
The remainder after dividing dividend by divisor. The result has the same sign as dividend.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
public static BigFloat operator %(
BigFloat dividend,
BigFloat divisor
)
Parameters
Return Value
BigFloatThe remainder after dividing dividend by divisor. The result has the same sign as dividend.
Implements
IModulusOperators<TSelf, TOther, TResult>.Modulus(TSelf, TOther)Exceptions
Argument | dividend is null. -or- divisor is null. |