Initializing help system before first use

Multiply Operator (XPRBterm, XPRBexpr)

Multiply an XPRBexpr and an XPRBterm

Namespace:   BCL
Assembly:  xprbdn (in xprbdn.dll) Version: 4.8.14.0
Syntax
C#
VB
public static XPRBexpr operator *(
	XPRBterm e1,
	XPRBexpr e2
)

Parameters

e1
Type:  BCLXPRBterm
The first expression to multiply
e2
Type:  BCLXPRBexpr
The second expression to multiply.

Return Value

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