Decimal.UnaryPlus(Decimal) 运算符

定义

返回 Decimal 操作数的值(操作数符号不变)。

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

参数

d
Decimal

要返回的操作数。

返回

Decimal

操作数 d 的值。

注解

UnaryPlus方法定义值的一元正运算符 Decimal 的操作。

适用于