BigInteger.Addition Operator

Returns the sum of two BigInteger numbers.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public static BigInteger operator +(
	BigInteger left,
	BigInteger right
)

Parameters

left  BigInteger
A BigInteger number.
right  BigInteger
A BigInteger number.

Return Value

BigInteger
The sum of left and right.

Implements

IAdditionOperators<TSelf, TOther, TResult>.Addition(TSelf, TOther)

See Also