CspSetOperators.SetEqual Method (ConstraintSystem, CspTerm, array<Int32[])

[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 set variable is equal to a set.

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

Syntax

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

Parameters

Return Value

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

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

CspSetOperators Class

SetEqual Overload

Microsoft.SolverFoundation.Solvers Namespace