Initializing help system before first use

UnaryNegation Operator

Negate an XPRBterm.

Namespace:   BCL
Assembly:  xprbdn (in xprbdn.dll) Version: 37.1.1.0
Syntax
C#
VB
public static XPRBterm operator -(
	XPRBterm rhs
)

Parameters

rhs
Type:  BCLXPRBterm
The XPRBterm to negate.

Return Value

Type:  XPRBterm
The resultant XPRBterm.
Examples
XPRBvar var = new XPRBvar("Variable1"); XPRBterm term = new XPRBterm(2.3, var); ... term = -term;
See Also