BigInteger: Add |
Adds a value to this instance of BigInteger.
Public Function Add( ByVal Value As BigInteger ) As BigInteger
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.Add(BInt(150)) Debug.Print b.ToString ' This outputs the following: 250