Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Range()

static ParallelQuery< int > System.Linq.ParallelEnumerable.Range ( int start,
int count )
inlinestatic

Definition at line 149 of file ParallelEnumerable.cs.

150 {
151 if (count < 0 || (count > 0 && int.MaxValue - (count - 1) < start))
152 {
153 throw new ArgumentOutOfRangeException("count");
154 }
155 return new RangeEnumerable(start, count);
156 }

References System.Linq.count, and System.start.

Referenced by System.Linq.Parallel.ArrayMergeHelper< TInputOutput >.Execute().