BigInteger.UnaryPlus(BigInteger) 运算符
定义
返回 BigInteger 操作数的值。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);
static member ( ~+ ) : System.Numerics.BigInteger -> System.Numerics.BigInteger
Public Shared Operator + (value As BigInteger) As BigInteger
参数
- value
- BigInteger
一个整数值。An integer value.
返回
value
操作数的值。The value of the value
operand.
注解
UnaryPlus方法为值定义一元正运算符的运算 BigInteger 。The UnaryPlus method defines the operation of the unary positive operator for BigInteger values.