Java.Math.BigInteger.Remainder Method
Returns a BigInteger whose value is this % divisor.

Syntax

[Android.Runtime.Register("remainder", "(Ljava/math/BigInteger;)Ljava/math/BigInteger;", "GetRemainder_Ljava_math_BigInteger_Handler")]
public virtual BigInteger Remainder (BigInteger divisor)

Parameters

divisor
value by which this is divided.

Returns

Documentation for this section has not yet been entered.

Exceptions

TypeReason
Java.Lang.NullPointerExceptionif divisor == null.
Java.Lang.ArithmeticExceptionif divisor == 0.

Remarks

Returns a BigInteger whose value is this % divisor. Regarding signs this methods has the same behavior as the % operator on ints: the sign of the remainder is the same as the sign of this.

[Android Documentation]

Requirements

Namespace: Java.Math
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1