4 references to CompareTo
Microsoft.CodeAnalysis.Features (2)
Completion\CompletionHelper.cs (2)
134var caseInsensitiveComparison = match1.CompareTo(match2, ignoreCase: true); 187return match1.CompareTo(match2, ignoreCase: false);
Microsoft.CodeAnalysis.Workspaces (2)
PatternMatching\PatternMatch.cs (2)
63=> CompareTo(other, ignoreCase: false); 66=> other.HasValue ? CompareTo(other.Value, ignoreCase) : -1;