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보다 큰 경우

적용 대상

추가 정보