BigIntegerStatic: Multiply

Multiply

Multiplies BigInteger values, returning their product.



 Public Function Multiply(
	  ByVal x As BigInteger,
	  ByVal y As BigInteger ) As BigInteger

Parameters

x
[ByVal] BigInteger. The multiplicand to be multiplied.
y
[ByVal] BigInteger. The multiplier to multiply by.

Return Values

BigInteger -  The product of the two values.

Remarks

Values of Nothing will be treated as zero.

 Dim b As BigInteger
 Set b = BigInteger.Multiply(BInt(100), BInt(150))
 Debug.Print b.ToString ' 15000
 

See Also

Project VBCorLib Overview Class BigIntegerStatic Overview BigIntegerStatic Properties BigIntegerStatic Methods Modulus Negate