Creates and returns an integer expression representing the difference between the integer expressions expr1 and expr2.

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

Syntax

C#
IIntExpr Diff(
	IIntExpr expr1,
	IIntExpr expr2
)
Visual Basic
Function Diff ( _
	expr1 As IIntExpr, _
	expr2 As IIntExpr _
) As IIntExpr

Parameters

expr1
Type: ILOG.Concert..::..IIntExpr
An integer expression to use in the difference.
expr2
Type: ILOG.Concert..::..IIntExpr
An integer expression to subtract.

Return Value

An integer expression representing the difference expr1 - expr2.

See Also