CspListOperators.ConstantIntegerList Method

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

Creates a constant integer list.

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

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function ConstantIntegerList ( _
    solver As ConstraintSystem, _
    ParamArray list As Integer() _
) As CspTerm
public static CspTerm ConstantIntegerList(
    this ConstraintSystem solver,
    params int[] list
)
[ExtensionAttribute]
public:
static CspTerm^ ConstantIntegerList(
    ConstraintSystem^ solver, 
    ... array<int>^ list
)
static member ConstantIntegerList : 
        solver:ConstraintSystem * 
        list:int[] -> CspTerm 
public static function ConstantIntegerList(
    solver : ConstraintSystem, 
    ... list : int[]
) : CspTerm

Parameters

Return Value

Type: Microsoft.SolverFoundation.Solvers.CspTerm
A term that represents a constant integer 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

See Also

Reference

CspListOperators Class

Microsoft.SolverFoundation.Solvers Namespace