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

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

Syntax

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

Parameters

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

Return Value

An expression representing the sum of v + e.

See Also