CspSetOperators.Union Method
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Creates a term that represents the union of two sets.
Namespace: Microsoft.SolverFoundation.Solvers
Assembly: Microsoft.Solver.Foundation (in Microsoft.Solver.Foundation.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function Union ( _
solver As ConstraintSystem, _
setVar1 As CspTerm, _
setVar2 As CspTerm _
) As CspTerm
public static CspTerm Union(
this ConstraintSystem solver,
CspTerm setVar1,
CspTerm setVar2
)
[ExtensionAttribute]
public:
static CspTerm^ Union(
ConstraintSystem^ solver,
CspTerm^ setVar1,
CspTerm^ setVar2
)
static member Union :
solver:ConstraintSystem *
setVar1:CspTerm *
setVar2:CspTerm -> CspTerm
public static function Union(
solver : ConstraintSystem,
setVar1 : CspTerm,
setVar2 : CspTerm
) : CspTerm
Parameters
- solver
Type: Microsoft.SolverFoundation.Solvers.ConstraintSystem
A solver.
- setVar1
Type: Microsoft.SolverFoundation.Solvers.CspTerm
The first set variable.
- setVar2
Type: Microsoft.SolverFoundation.Solvers.CspTerm
The second set variable.
Return Value
Type: Microsoft.SolverFoundation.Solvers.CspTerm
A term that represents the union of 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).
Remarks
The two set variables must have the same value kind.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.