Initializing help system before first use

Subtraction Operator (XPRBvar, Double)

Subtract a double from an XPRBvar.

Namespace:   BCL
Assembly:  xprbdn (in xprbdn.dll) Version: 4.8.14.0
Syntax
C#
VB
public static XPRBexpr operator -(
	XPRBvar v1,
	double d2
)

Parameters

v1
Type:  BCLXPRBvar
The XPRBvar to subtract from.
d2
Type:  SystemDouble
The double to be subtracted.

Return Value

Type:  XPRBexpr
The resultant XPRBexpr.
Examples
XPRBvar var = new XPRBvar("Variable1"); XPRBexpr exp; ... exp = var-9.6;
See Also