BigInteger.UnaryPlus(BigInteger) Operator
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Colaborați cu noi pe GitHub
Sursa pentru acest conținut poate fi găsită pe GitHub, unde puteți, de asemenea, să creați și să consultați probleme și solicitări de tragere. Pentru mai multe informații, consultați ghidul nostru pentru colaboratori.