BigInteger: Divide

Divide

Divides this BigInteger instance by the supplied divisor.



 Public Function Divide(
	  ByVal Divisor As BigInteger ) As BigInteger

Parameters

Divisor
[ByVal] BigInteger. A numeric representation of the value to divide this instance by.

Return Values

BigInteger -  A new instance of BigInteger containing the quotient value.

Remarks

This method accepts a BigInteger, one of VBs numeric values or a string to be parsed.

 Dim b As BigInteger
 Set b = BInt(100)
 Set b = b.Divide(BInt(40))
 Debug.Print b.ToString

 ' This outputs the following:
 2
 

See Also

Project CorLib Overview

Class BigInteger Overview