Literal.LessThan Operator

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Returns a value that indicates whether one literal is less than another literal.

Namespace:  Microsoft.SolverFoundation.Solvers
Assembly:  Microsoft.Solver.Foundation (in Microsoft.Solver.Foundation.dll)

Syntax

'Declaration
Public Shared Operator < ( _
    lit1 As Literal, _
    lit2 As Literal _
) As Boolean
public static bool operator <(
    Literal lit1,
    Literal lit2
)
public:
static bool operator <(
    Literal lit1, 
    Literal lit2
)
static let inline (<)
        lit1:Literal * 
        lit2:Literal  : bool
JScript does not support overloaded operators.

Parameters

Return Value

Type: System.Boolean
true if lit1 is less than lit2; otherwise, false.

.NET Framework Security

See Also

Reference

Literal Structure

Microsoft.SolverFoundation.Solvers Namespace