NullableTypes Class Library

NullableDecimal Unary Negation Operator 

Negates the value of the specified NullableDecimal operand.

[Visual Basic]
returnValue = NullableDecimal.op_UnaryNegation(x)
[C#]
public static NullableDecimal operator -(
   NullableDecimal x
);

Parameters

x
A NullableDecimal structure.

Return Value

Null if x is Null otherwise the value of x multiplied by negative one.

See Also

NullableDecimal Class | NullableTypes Namespace