BigInteger.UnaryPlus(BigInteger) Operator

Definition

Returns the value of the BigInteger operand. (The sign of the operand is unchanged.)

public:
 static System::Numerics::BigInteger operator +(System::Numerics::BigInteger value);
public:
 static System::Numerics::BigInteger operator +(System::Numerics::BigInteger value) = System::Numerics::IUnaryPlusOperators<System::Numerics::BigInteger, System::Numerics::BigInteger>::op_UnaryPlus;
public static System.Numerics.BigInteger operator + (System.Numerics.BigInteger value);
static member ( ~+ ) : System.Numerics.BigInteger -> System.Numerics.BigInteger
Public Shared Operator + (value As BigInteger) As BigInteger

Parameters

value
BigInteger

An integer value.

Returns

The value of the value operand.

Implements

Remarks

The UnaryPlus method defines the operation of the unary positive operator for BigInteger values.

Applies to