BindingUtilities.GetValuesByFirstIndex Method

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

Returns the values for a decision that has two index sets.

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

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function GetValuesByFirstIndex ( _
    decision As Decision _
) As IEnumerable(Of IEnumerable(Of Double))
public static IEnumerable<IEnumerable<double>> GetValuesByFirstIndex(
    this Decision decision
)
[ExtensionAttribute]
public:
static IEnumerable<IEnumerable<double>^>^ GetValuesByFirstIndex(
    Decision^ decision
)
static member GetValuesByFirstIndex : 
        decision:Decision -> IEnumerable<IEnumerable<float>> 
public static function GetValuesByFirstIndex(
    decision : Decision
) : IEnumerable<IEnumerable<double>>

Parameters

Return Value

Type: System.Collections.Generic.IEnumerable<IEnumerable<Double>>
The values of the decision, grouped by the first index.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Decision. 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 returned values are ordered by index.

.NET Framework Security

See Also

Reference

BindingUtilities Class

Microsoft.SolverFoundation.Services Namespace