BigIntegerStatic: Modulus |
Returns the remainder of division between two BigInteger values.
Public Function Modulus( ByVal Dividend As BigInteger, ByVal Divisor As BigInteger ) As BigInteger
Values of Nothing will be treated as zero.
Dim b As BigInteger Set b = BInt(100) Set b = BigInteger.Remainder(b, BInt(40)) Debug.Print b.ToString ' 20