[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Generates a parallel sequence of integral numbers within a specified range.
Namespace:
System.Linq
Assembly:
System.Core (in System.Core.dll)
Visual Basic (Declaration)
Public Shared Function Range ( _
start As Integer, _
count As Integer _
) As ParallelQuery(Of Integer)
Dim start As Integer
Dim count As Integer
Dim returnValue As ParallelQuery(Of Integer)
returnValue = ParallelEnumerable.Range(start, count)
public static ParallelQuery<int> Range(
int start,
int count
)
public:
static ParallelQuery<int>^ Range(
int start,
int count
)
static member Range :
start:int *
count:int -> ParallelQuery<int>
Return Value
Type:
System.Linq..::.ParallelQuery<(Of <(Int32>)>)An IEnumerable<Int32> in C# or IEnumerable(Of Int32) in Visual Basic that contains a range of sequential integral numbers.
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
.NET Framework
Supported in: 4
.NET Framework Client Profile
Supported in: 4
Reference