Implemented interface member:
5 references to CompareTo
dotnet (3)
Commands\Workload\Install\WorkloadManifestUpdater.cs (1)
205
adBand.
CompareTo
(installedBand) > 0)
Commands\Workload\InstallingWorkloadCommand.cs (1)
442
.Where(featureBand => featureBand.
CompareTo
(_sdkFeatureBand) < 0);
Commands\Workload\WorkloadInfoHelper.cs (1)
94
if (new SdkFeatureBand(_targetSdkVersion).
CompareTo
(_currentSdkFeatureBand) < 0)
Microsoft.DotNet.TemplateLocator (2)
SdkFeatureBand.cs (2)
66
public static bool operator >(SdkFeatureBand a, SdkFeatureBand b) => a.
CompareTo
(b) > 0;
68
public static bool operator <(SdkFeatureBand a, SdkFeatureBand b) => a.
CompareTo
(b) < 0;