CspListOperators.ElementAt 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 indicates whether the value of listVar[index] is equal to elementToBe.
Namespace: Microsoft.SolverFoundation.Solvers
Assembly: Microsoft.Solver.Foundation (in Microsoft.Solver.Foundation.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function ElementAt ( _
solver As ConstraintSystem, _
index As CspTerm, _
listVar As CspTerm, _
elementToBe As CspTerm _
) As CspTerm
public static CspTerm ElementAt(
this ConstraintSystem solver,
CspTerm index,
CspTerm listVar,
CspTerm elementToBe
)
[ExtensionAttribute]
public:
static CspTerm^ ElementAt(
ConstraintSystem^ solver,
CspTerm^ index,
CspTerm^ listVar,
CspTerm^ elementToBe
)
static member ElementAt :
solver:ConstraintSystem *
index:CspTerm *
listVar:CspTerm *
elementToBe:CspTerm -> CspTerm
public static function ElementAt(
solver : ConstraintSystem,
index : CspTerm,
listVar : CspTerm,
elementToBe : CspTerm
) : CspTerm
Parameters
- solver
Type: Microsoft.SolverFoundation.Solvers.ConstraintSystem
A solver.
- index
Type: Microsoft.SolverFoundation.Solvers.CspTerm
An index term for a list.
- listVar
Type: Microsoft.SolverFoundation.Solvers.CspTerm
A list variable.
- elementToBe
Type: Microsoft.SolverFoundation.Solvers.CspTerm
The target value.
Return Value
Type: Microsoft.SolverFoundation.Solvers.CspTerm
A Boolean term that indicates whether the value of listVar[index] is equal to elementToBe.
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 index must be a constant integer term or have an integer interval between zero and the domain's maximum length minus one.
.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.