ParallelEnumerable.Range(Int32, Int32) 方法

定义

生成指定范围内的整数的并行序列。

public:
 static System::Linq::ParallelQuery<int> ^ Range(int start, int count);
public static System.Linq.ParallelQuery<int> Range (int start, int count);
static member Range : int * int -> System.Linq.ParallelQuery<int>
Public Function Range (start As Integer, count As Integer) As ParallelQuery(Of Integer)

参数

start
Int32

序列中第一个整数的值。

count
Int32

要生成的顺序整数的数目。

返回

C# 中的 IEnumerable<Int32> 或 Visual Basic 中的 IEnumerable(Of Int32),其中包含某个范围的顺序整数。

例外

count 小于 0 - 或 - start + count 1 大于 Int32.MaxValue

适用于

另请参阅