20 references to Sort
PresentationFramework (7)
System\Windows\Controls\Grid.cs (7)
2174Array.Sort(definitionIndices, 0, starDefinitionsCount, new StarDistributionOrderIndexComparer(definitions)); 2221Array.Sort(definitionIndices, 0, definitions.Length, new DistributionOrderIndexComparer(definitions)); 2259Array.Sort(definitionIndices, 0, definitions.Length, new RoundingErrorIndexComparer(roundingErrors)); 2454Array.Sort(definitionIndices, 0, minCount, new MinRatioIndexComparer(definitions)); 2455Array.Sort(definitionIndices, defCount, maxCount, new MaxRatioIndexComparer(definitions)); 2628Array.Sort(definitionIndices, 0, starCount, new StarWeightIndexComparer(definitions)); 2728Array.Sort(definitionIndices, 0, definitions.Length, new RoundingErrorIndexComparer(roundingErrors));
System.Collections (2)
System\Collections\Generic\SortedSet.cs (2)
110Array.Sort(elements, 0, count, comparer); 1132Array.Sort(elements, 0, length, Comparer);
System.Collections.Immutable (5)
System\Collections\Immutable\ImmutableArray_1.Builder.cs (3)
948Array.Sort(_elements, 0, this.Count, Comparer<T>.Default); 988Array.Sort(_elements, 0, _count, comparer); 1007Array.Sort(_elements, index, count, comparer);
System\Collections\Immutable\ImmutableArray_1.cs (1)
852Array.Sort(tmp, index, count, comparer);
System\Collections\Immutable\ImmutableList_1.Node.cs (1)
638Array.Sort(array, index, count, comparer);
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Array.cs (3)
2144Sort(array, index, length, null); 2156Sort(array, 0, array.Length, comparer); 2199Sort(keys, index, length, comparer);
src\libraries\System.Private.CoreLib\src\System\Collections\Generic\List.cs (1)
1117Array.Sort(_items, index, count, comparer);
System.Private.Xml (1)
System\Xml\Xsl\Runtime\XmlQuerySequence.cs (1)
611Array.Sort(sortArray, 0, Count, comparer);
System.Private.Xml.Linq (1)
System\Xml\Linq\Extensions.cs (1)
302Array.Sort(items, 0, count, XNode.DocumentOrderComparer);