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