Initializing help system before first use

Addition Operator (XPRBctr, XPRBexpr)

Add an XPRBexpr to a constraint.

Namespace:   BCL
Assembly:  xprbdn (in xprbdn.dll) Version: 4.8.14.0
Syntax
C#
VB
public static XPRBctr operator +(
	XPRBctr lhs,
	XPRBexpr rhs
)

Parameters

lhs
Type:  BCLXPRBctr
The XPRBctr to be added to.
rhs
Type:  BCLXPRBexpr
The XPRBexpr to add.

Return Value

Type:  XPRBctr
The modified XPRBctr.
Examples
XPRBctr ctr = new XPRBctr(); XPRBexpr exp = new XPRBexpr(); ... ctr = ctr+exp;
See Also