ParallelEnumerable Methods


.NET Framework Class Library
ParallelEnumerable..::.Range Method

[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)
Syntax

Visual Basic (Declaration)
Public Shared Function Range ( _
    start As Integer, _
    count As Integer _
) As ParallelQuery(Of Integer)
Visual Basic (Usage)
Dim start As Integer
Dim count As Integer
Dim returnValue As ParallelQuery(Of Integer)

returnValue = ParallelEnumerable.Range(start, count)
C#
public static ParallelQuery<int> Range(
    int start,
    int count
)
Visual C++
public:
static ParallelQuery<int>^ Range(
    int start, 
    int count
)
F#
static member Range : 
        start:int * 
        count:int -> ParallelQuery<int> 

Parameters

start
Type: System..::.Int32
The value of the first integer in the sequence.
count
Type: System..::.Int32
The number of sequential integers to generate.

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.
Exceptions

ExceptionCondition
ArgumentOutOfRangeException

count is less than 0 -or- start + count - 1 is larger than MaxValue()()().

Platforms

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.
Version Information

.NET Framework

Supported in: 4

.NET Framework Client Profile

Supported in: 4
See Also

Reference

Page view tracker