Creates and returns an expression representing the sum of a numeric expression and a value.

Namespace: ILOG.Concert
Assembly: ILOG.Concert (in ILOG.Concert.dll) Version: 22.1.0.0

Syntax

C#
INumExpr Sum(
	INumExpr e,
	double v
)
Visual Basic
Function Sum ( _
	e As INumExpr, _
	v As Double _
) As INumExpr

Parameters

e
Type: ILOG.Concert..::..INumExpr
The numeric expression.
v
Type: System..::..Double
The value.

Return Value

An expression representing the sum of e + v.

See Also