BigIntegerStatic: Add

Add

Adds two BigInteger value instances together, returning the sum.



 Public Function Add(
	  ByVal Left As BigInteger,
	  ByVal Right As BigInteger ) As BigInteger

Parameters

Left
[ByVal] BigInteger. The first value to add.
Right
[ByVal] BigInteger. The second value to add.

Return Values

BigInteger -  The sum of Left and Right.

Remarks

Values of Nothing will be treated as zero.

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

See Also

Project CorLib Overview

Class BigIntegerStatic Overview