BigInteger.Add(BigInteger, BigInteger) Метод

Определение

Складывает два значения BigInteger и возвращает результат.

public:
 static System::Numerics::BigInteger Add(System::Numerics::BigInteger left, System::Numerics::BigInteger right);
public static System.Numerics.BigInteger Add (System.Numerics.BigInteger left, System.Numerics.BigInteger right);
static member Add : System.Numerics.BigInteger * System.Numerics.BigInteger -> System.Numerics.BigInteger
Public Shared Function Add (left As BigInteger, right As BigInteger) As BigInteger

Параметры

left
BigInteger

Первое из складываемых значений.

right
BigInteger

Второе из складываемых значений.

Возвращаемое значение

Сумма left и right.

Комментарии

Языки, которые не поддерживают перегрузку операторов или пользовательские Add операторы, могут использовать метод для сложения с помощью BigInteger значений.

Метод Add является полезной заменой оператора сложения при создании экземпляра переменной BigInteger путем присвоения ей суммы, полученной в результате сложения, как показано в следующем примере.

// The statement:
//    BigInteger number = Int64.MaxValue + Int32.MaxValue;
// produces compiler error CS0220: The operation overflows at compile time in checked mode.
// The alternative:
BigInteger number = BigInteger.Add(Int64.MaxValue, Int32.MaxValue);
' The statement
'    Dim number As BigInteger = Int64.MaxValue + Int32.MaxValue
' produces compiler error BC30439: Constant expression not representable in type 'Long'.
' The alternative:
Dim number As BigInteger = BigInteger.Add(Int64.MaxValue, Int32.MaxValue)

Применяется к

См. также раздел