Multiply Operator (XPRBterm, XPRBexpr)
  Multiply an XPRBexpr and an XPRBterm 
Namespace: BCL
Assembly: xprbdn (in xprbdn.dll) Version: 4.8.13.0
 Syntax
Syntax
Parameters
- e1
- 
   Type: 
   BCLXPRBterm
   
 The first expression to multiply
- e2
- 
   Type: 
   BCLXPRBexpr
   
 The second expression to multiply.
Return Value
Type: XPRBexprThe resultant XPRBexpr.
 Examples
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
See Also
 
