CspSetOperators.MemberOf Method (ConstraintSystem, CspTerm, 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 value is a member of a set variable.

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

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function MemberOf ( _
    solver As ConstraintSystem, _
    valVar As CspTerm, _
    setVar As CspTerm _
) As CspTerm
public static CspTerm MemberOf(
    this ConstraintSystem solver,
    CspTerm valVar,
    CspTerm setVar
)
[ExtensionAttribute]
public:
static CspTerm^ MemberOf(
    ConstraintSystem^ solver, 
    CspTerm^ valVar, 
    CspTerm^ setVar
)
static member MemberOf : 
        solver:ConstraintSystem * 
        valVar:CspTerm * 
        setVar:CspTerm -> CspTerm 
public static function MemberOf(
    solver : ConstraintSystem, 
    valVar : CspTerm, 
    setVar : CspTerm
) : CspTerm

Parameters

Return Value

Type: Microsoft.SolverFoundation.Solvers.CspTerm
A term that indicates whether a value is a member of a set variable.

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

MemberOf Overload

Microsoft.SolverFoundation.Solvers Namespace