Addition Operator (XPRBterm, XPRBterm)
  Add two XPRBterms. 
Namespace: BCL
Assembly: xprbdn (in xprbdn.dll) Version: 4.8.13.0
 Syntax
Syntax
Parameters
- t1
- 
   Type: 
   BCLXPRBterm
   
 The first XPRBterm to add.
- t2
- 
   Type: 
   BCLXPRBterm
   
 The second XPRBterm to add.
Return Value
Type: XPRBexprThe resultant XPRBexpr.
 Examples
Examples
  XPRBvar var = new XPRBvar("Variable1"); XPRBvar var2 = new XPRBvar("Variable2"); XPRBterm term = new XPRBterm(2.3, var); XPRBterm term2 = new XPRBterm(9.1, var2); XPRBexpr exp; ... exp = term+term2; 
 See Also
See Also
 
