11 references to GetRange
Microsoft.CodeAnalysis.UnitTests (1)
Collections\ImmutableListTestBase.cs (1)
351
var expected = bclList.
GetRange
(index, count);
Microsoft.ML.FastTree (3)
Dataset\FeatureFlock.cs (3)
464
features.
GetRange
(0, bestThreshold + 1).ToArray();
577
SubFeatures = lowPopulationFeatures.
GetRange
(1, lowPopulationFeatures.Count - 1).ToArray()
790
lowPopulationFeatures.
GetRange
(1, lowPopulationFeatures.Count - 1).ToArray();
Microsoft.ML.Sweeper (1)
AsyncSweeper.cs (1)
250
PrepareNextBatch(_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)
1584
objectsCached.InsertRange(start, objectsNew.
GetRange
(idxNew, idx - idxNew));
1609
objectsCached.InsertRange(end, objectsNew.
GetRange
(idxNew, objectsNew.Count - idxNew));
System\Windows\Annotations\AnnotationService.cs (1)
805
leftover = annotations.
GetRange
(_maxAnnotationsBatch, annotations.Count - _maxAnnotationsBatch);
System.IO.Packaging (1)
System\IO\Packaging\ZipPackage.cs (1)
695
parts.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)
708
public List<T> Slice(int start, int length) =>
GetRange
(start, length);