11 references to GetRange
Microsoft.CodeAnalysis.UnitTests (1)
Collections\ImmutableListTestBase.cs (1)
351var expected = bclList.GetRange(index, count);
Microsoft.ML.FastTree (3)
Dataset\FeatureFlock.cs (3)
464features.GetRange(0, bestThreshold + 1).ToArray(); 577SubFeatures = lowPopulationFeatures.GetRange(1, lowPopulationFeatures.Count - 1).ToArray() 790lowPopulationFeatures.GetRange(1, lowPopulationFeatures.Count - 1).ToArray();
Microsoft.ML.Sweeper (1)
AsyncSweeper.cs (1)
250PrepareNextBatch(_results.GetRange(0, Math.Max(0, _numGenerated - _relaxation)));
Microsoft.ML.TimeSeries (1)
SrCnnEntireAnomalyDetector.cs (1)
309_previousBatch = _previousBatch.GetRange(_batch.Count, _bLen);
PresentationFramework (3)
MS\Internal\PtsHost\TextParagraph.cs (2)
1584objectsCached.InsertRange(start, objectsNew.GetRange(idxNew, idx - idxNew)); 1609objectsCached.InsertRange(end, objectsNew.GetRange(idxNew, objectsNew.Count - idxNew));
System\Windows\Annotations\AnnotationService.cs (1)
805leftover = annotations.GetRange(_maxAnnotationsBatch, annotations.Count - _maxAnnotationsBatch);
System.IO.Packaging (1)
System\IO\Packaging\ZipPackage.cs (1)
695parts.Add(new ZipPackagePart(this, _zipArchive, _zipStreamManager, pieces.GetRange(startIndex, numItems), partUri, contentType.ToString(),
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Collections\Generic\List.cs (1)
708public List<T> Slice(int start, int length) => GetRange(start, length);