CspListOperators.ConstantSymbolList 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 list.
Namespace: Microsoft.SolverFoundation.Solvers
Assembly: Microsoft.Solver.Foundation (in Microsoft.Solver.Foundation.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function ConstantSymbolList ( _
solver As ConstraintSystem, _
symbolDomain As CspDomain, _
ParamArray list As String() _
) As CspTerm
public static CspTerm ConstantSymbolList(
this ConstraintSystem solver,
CspDomain symbolDomain,
params string[] list
)
[ExtensionAttribute]
public:
static CspTerm^ ConstantSymbolList(
ConstraintSystem^ solver,
CspDomain^ symbolDomain,
... array<String^>^ list
)
static member ConstantSymbolList :
solver:ConstraintSystem *
symbolDomain:CspDomain *
list:string[] -> CspTerm
public static function ConstantSymbolList(
solver : ConstraintSystem,
symbolDomain : CspDomain,
... list : String[]
) : CspTerm
Parameters
- solver
Type: Microsoft.SolverFoundation.Solvers.ConstraintSystem
A solver.
- symbolDomain
Type: Microsoft.SolverFoundation.Solvers.CspDomain
The domain that the symbols belong to.
- list
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 list.
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
- 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.