CspSetOperators.Intersection Method

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

Computes the intersection between two sets.

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

Syntax

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

Parameters

Return Value

Type: Microsoft.SolverFoundation.Solvers.CspTerm
A term that represents the intersection between setVar1 and setVar2.

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

Microsoft.SolverFoundation.Solvers Namespace