Decimal.UnaryPlus(Decimal) Operator
Definition
Returns the value of the Decimal operand (the sign of the operand is unchanged).
public:
static System::Decimal operator +(System::Decimal d);
public static decimal operator + (decimal d);
static member ( ~+ ) : decimal -> decimal
Public Shared Operator + (d As Decimal) As Decimal
Parameters
- d
- Decimal
The operand to return.
Returns
The value of the operand, d
.
Remarks
The UnaryPlus method defines the operation of the unary positive operator for Decimal values.