Initializing help system before first use

Subtraction Operator (Double, XPRBterm)

Subtract a XPRBterm from a double.

Namespace:   BCL
Assembly:  xprbdn (in xprbdn.dll) Version: 37.1.1.0
Syntax
C#
VB
public static XPRBexpr operator -(
	double d,
	XPRBterm t1
)

Parameters

d
Type:  SystemDouble
The double to subtract from.
t1
Type:  BCLXPRBterm
The XPRBterm to subtract.

Return Value

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