Creates and returns an expression representing the difference between the expressions e1 and e2.

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

Syntax

C#
INumExpr Diff(
	INumExpr e1,
	INumExpr e2
)
Visual Basic
Function Diff ( _
	e1 As INumExpr, _
	e2 As INumExpr _
) As INumExpr

Parameters

e1
Type: ILOG.Concert..::..INumExpr
An expression to use in the difference.
e2
Type: ILOG.Concert..::..INumExpr
An expression to subtract.

Return Value

An expression representing the difference e1 - e2.

See Also