Multiply Operator (XPRBvar, XPRBterm)
Multiply an XPRBvar by an XPRBterm.
Namespace: BCL
Assembly: xprbdn (in xprbdn.dll) Version: 37.1.1.0

Parameters
- v1
-
Type:
BCLXPRBvar
The XPRBvar to multiply. - t2
-
Type:
BCLXPRBterm
The XPRBterm to multiply by.
Return Value
Type: XPRBexprThe resultant XPRBexpr.

XPRBterm term = new XPRBterm("Term1"); XPRBvar var = new XPRBvar("Variable"); XPRBexpr exp; ... exp = var*term;
