Version

ToEnumerableRange Method

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

Parameters

expression
The expression to evaluate.
start
The starting index.
length
The ending index.

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