CspSetOperators.ConstantSymbolSet Method

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

Creates a constant symbol set.

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

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function ConstantSymbolSet ( _
    solver As ConstraintSystem, _
    symbolDomain As CspDomain, _
    ParamArray subset As String() _
) As CspTerm
public static CspTerm ConstantSymbolSet(
    this ConstraintSystem solver,
    CspDomain symbolDomain,
    params string[] subset
)
[ExtensionAttribute]
public:
static CspTerm^ ConstantSymbolSet(
    ConstraintSystem^ solver, 
    CspDomain^ symbolDomain, 
    ... array<String^>^ subset
)
static member ConstantSymbolSet : 
        solver:ConstraintSystem * 
        symbolDomain:CspDomain * 
        subset:string[] -> CspTerm 
public static function ConstantSymbolSet(
    solver : ConstraintSystem, 
    symbolDomain : CspDomain, 
    ... subset : String[]
) : CspTerm

Parameters

  • subset
    Type: array<System.String[]
    An array of symbols that belong to symbolDomain.

Return Value

Type: Microsoft.SolverFoundation.Solvers.CspTerm
A term that represents a constant symbol set.

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