CspListOperators.ListEqual Method (ConstraintSystem, array<Int32[], CspTerm)

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

Creates a term that indicates whether a list is equal to a list variable.

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

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function ListEqual ( _
    constraintSolver As ConstraintSystem, _
    list1 As Integer(), _
    listVar2 As CspTerm _
) As CspTerm
public static CspTerm ListEqual(
    this ConstraintSystem constraintSolver,
    int[] list1,
    CspTerm listVar2
)
[ExtensionAttribute]
public:
static CspTerm^ ListEqual(
    ConstraintSystem^ constraintSolver, 
    array<int>^ list1, 
    CspTerm^ listVar2
)
static member ListEqual : 
        constraintSolver:ConstraintSystem * 
        list1:int[] * 
        listVar2:CspTerm -> CspTerm 
public static function ListEqual(
    constraintSolver : ConstraintSystem, 
    list1 : int[], 
    listVar2 : CspTerm
) : CspTerm

Parameters

Return Value

Type: Microsoft.SolverFoundation.Solvers.CspTerm
A Boolean term that indicates whether list1 is equal to listVar2.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type ConstraintSystem. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

.NET Framework Security

See Also

Reference

CspListOperators Class

ListEqual Overload

Microsoft.SolverFoundation.Solvers Namespace