BigInteger: Multiply

Multiply

Multiplies this instance of BigInteger by the supplied multiplier.



 Public Function Multiply(
	  ByVal Value As BigInteger ) As BigInteger

Parameters

Value
[ByVal] BigInteger. A numeric representation of the value to multiply this instance by.

Return Values

BigInteger -  A new instance of BigInteger containing the product 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.Multiply(BInt(150))
 Debug.Print b.ToString

 ' This outputs the following:
 15000
 

See Also

Project CorLib Overview

Class BigInteger Overview