Version

ToEnumerable Method

Evaluates the given expression over a range of indexes starting at 0.
Syntax
'Declaration
 
Public Shared Function ToEnumerable( _
   ByVal expression As Func(Of Integer,Double), _
   ByVal length As Integer _
) As IEnumerable(Of Double)
public static IEnumerable<double> ToEnumerable( 
   Func<int,double> expression,
   int length
)

Parameters

expression
The expression to evaluate.
length
The number of items to evaluate.

Return Value

The stream of values.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also