Addition Operator (XPRBterm, XPRBvar)
Add an XPRBvar to an XPRBterm.
Namespace: BCL
Assembly: xprbdn (in xprbdn.dll) Version: 4.8.14.0

Parameters
- t
-
Type:
BCLXPRBterm
The XPRBterm to be added to. - v1
-
Type:
BCLXPRBvar
The XPRBvar to add.
Return Value
Type: XPRBexprThe resultant XPRBexpr.

XPRBvar var = new XPRBvar("Variable1"); XPRBterm term = new XPRBterm(1.9, var); XPRBexpr exp; ... exp = term+var;
