16 references to Sort
Microsoft.AspNetCore.Routing (5)
Matching\AcceptsMatcherPolicy.cs (1)
272Array.Sort(ordered, static (left, right) => GetScore(left.mediaType).CompareTo(GetScore(right.mediaType)));
Matching\HostMatcherPolicy.cs (1)
299Array.Sort(ordered, static (left, right) => GetScore(left.host).CompareTo(GetScore(right.host)));
Matching\ILEmitTrieFactory.cs (3)
111Array.Sort(groups, static (a, b) => a.Key.CompareTo(b.Key)); 336Array.Sort(groups, static (a, b) => unchecked((long)a.Key).CompareTo(unchecked((long)b.Key))); 461Array.Sort(groups, static (a, b) => (a.Key | 0x20).CompareTo(b.Key | 0x20));
Microsoft.Build (1)
BackEnd\Components\Communications\NodeProviderOutOfProcBase.cs (1)
405Array.Sort(processes, (left, right) => left.Id.CompareTo(right.Id));
Microsoft.Extensions.DependencyInjection (1)
ServiceLookup\CallSiteFactory.cs (1)
494Array.Sort(constructors,
PresentationFramework (1)
System\Windows\Markup\Primitives\ElementMarkupObject.cs (1)
515Array.Sort(entries, delegate(DictionaryEntry one, DictionaryEntry two)
ReachFramework (2)
AlphaFlattener\SegmentTree.cs (2)
229Array.Sort(_xCoord, (x, y) => x.value.CompareTo(y.value)); 232Array.Sort(_yCoord, (x, y) => x.value.CompareTo(y.value));
System.Collections.Immutable (1)
System\Collections\Immutable\ImmutableList_1.Node.cs (1)
599Array.Sort(array, comparison);
System.Diagnostics.DiagnosticSource (1)
System\Diagnostics\Metrics\AggregatorStore.cs (1)
335Array.Sort(instructions, (LabelInstruction a, LabelInstruction b) => string.CompareOrdinal(a.LabelName, b.LabelName));
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\TimeZoneInfo.cs (1)
916Array.Sort(array, static (x, y) =>
System.Private.DataContractSerialization (1)
System\Runtime\Serialization\CollectionDataContract.cs (1)
1323Array.Sort(parentInterfaceTypes, (x, y) => string.Compare(x.FullName, y.FullName));
System.Reflection.Metadata (2)
System\Reflection\Internal\Utilities\EnumerableExtensions.cs (1)
34Array.Sort(map, (int left, int right) =>
System\Reflection\Internal\Utilities\MemoryBlock.cs (1)
827Array.Sort(ptrTable, (int a, int b) => { return unsortedReferences[a - 1].CompareTo(unsortedReferences[b - 1]); });