Initializing help system before first use

Multiply Operator (Double, XPRBexpr)

Multiply a double by an XPRBexpr.

Namespace:   BCL
Assembly:  xprbdn (in xprbdn.dll) Version: 4.8.14.0
Syntax
C#
VB
public static XPRBexpr operator *(
	double d,
	XPRBexpr l
)

Parameters

d
Type:  SystemDouble
The double to multiply.
l
Type:  BCLXPRBexpr
The XPRBexpr to multiply by.

Return Value

Type:  XPRBexpr
The resultant XPRBexpr.
Examples
XPRBvar var = new XPRBvar("Variable1"); XPRBvar var2 = new XPRBvar("Variable2"); XPRBexpr exp = new XPRBexpr(var + 3.6*var2); XPRBexpr expnew; ... expnew = 3.14159*exp;
See Also