Initializing help system before first use

Addition Operator

Add an XPRBexpr to an XPRBcut.

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

Parameters

lhs
Type:  BCLXPRBcut
The XPRBcut to add to.
l
Type:  BCLXPRBexpr
The XPRBexpr to add.

Return Value

Type:  XPRBcut
The resultant XPRBcut.
Examples
XPRBcut cut = new XPRBcut(); XPRBvar var = new XPRBvar("Variable"); XPRBexpr exp = new XPRBexpr(3.2 + 9.6*var); ... cut = cut+exp;
See Also