CspListOperators.ElementCount Method
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Counts the frequency of an element in a list.
Namespace: Microsoft.SolverFoundation.Solvers
Assembly: Microsoft.Solver.Foundation (in Microsoft.Solver.Foundation.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function ElementCount ( _
solver As ConstraintSystem, _
element As CspTerm, _
listVar As CspTerm _
) As CspTerm
public static CspTerm ElementCount(
this ConstraintSystem solver,
CspTerm element,
CspTerm listVar
)
[ExtensionAttribute]
public:
static CspTerm^ ElementCount(
ConstraintSystem^ solver,
CspTerm^ element,
CspTerm^ listVar
)
static member ElementCount :
solver:ConstraintSystem *
element:CspTerm *
listVar:CspTerm -> CspTerm
public static function ElementCount(
solver : ConstraintSystem,
element : CspTerm,
listVar : CspTerm
) : CspTerm
Parameters
- solver
Type: Microsoft.SolverFoundation.Solvers.ConstraintSystem
A solver.
- element
Type: Microsoft.SolverFoundation.Solvers.CspTerm
An element to count.
- listVar
Type: Microsoft.SolverFoundation.Solvers.CspTerm
A list variable.
Return Value
Type: Microsoft.SolverFoundation.Solvers.CspTerm
A term that holds the frequency of element in listVar.
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.