18 references to Default
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.Xml\Misc\InvariantComparer.cs (1)
29return Comparer.Default.Compare(a, b);
PresentationFramework (1)
MS\Internal\Data\SortFieldComparer.cs (1)
36: (culture == CultureInfo.CurrentCulture) ? Comparer.Default
System.Collections.NonGeneric (1)
System\Collections\CaseInsensitiveComparer.cs (1)
59return Comparer.Default.Compare(a, b);
System.ComponentModel.TypeConverter (1)
System\InvariantComparer.cs (1)
26return Comparer.Default.Compare(a, b);
System.Private.CoreLib (8)
src\libraries\System.Private.CoreLib\src\System\Array.cs (4)
856comparer ??= Comparer.Default; 890if (comparer == Comparer.Default) 2024comparer ??= Comparer.Default; 2036if (comparer == Comparer.Default)
src\libraries\System.Private.CoreLib\src\System\Collections\ArrayList.cs (2)
616Sort(0, Count, Comparer.Default); 767comparer ??= Comparer.Default;
src\libraries\System.Private.CoreLib\src\System\Collections\Generic\Comparer.cs (1)
119return Comparer.Default.Compare(x, y);
src\libraries\System.Private.CoreLib\src\System\Type.Enum.cs (1)
125Comparer comparer = Comparer.Default;
System.Web.Services.Description (1)
System\Web\Services\InvariantComparer.cs (1)
30return Comparer.Default.Compare(a, b);
System.Windows.Controls.Ribbon (2)
Microsoft\Windows\Controls\Ribbon\Primitives\StarLayoutInfo.cs (2)
164return Comparer.Default.Compare(x.AllocatedStarWidth / x.RequestedStarWeight, 177return Comparer.Default.Compare((x.RequestedStarMaxWidth - x.AllocatedStarWidth) / x.RequestedStarWeight,
System.Windows.Forms (3)
misc\InvariantComparer.cs (1)
27return Comparer.Default.Compare(a, b);
System\Windows\Forms\Controls\DataGridView\DataGridViewRowCollection.RowComparer.cs (2)
109result = Comparer.Default.Compare(value1.ToString(), value2.ToString()); 114result = Comparer.Default.Compare(value1, value2);