Implemented interface members:
16 references to Count
Microsoft.CodeAnalysis.Workspaces (16)
src\Compilers\Core\Portable\Collections\ImmutableArrayExtensions.cs (1)
1348int high = array.Count - 1;
src\Dependencies\Collections\ImmutableSegmentedList`1.cs (11)
130if (unchecked((uint)index) >= (uint)self.Count) 295if (index == 0 && count == self.Count) 312if (index == self.Count) 327if (index == self.Count) 343if (count < 0 || count > self.Count) 375var index = self.IndexOf(value, 0, Count, equalityComparer); 454if (count == 0 && index >= 0 && index <= self.Count) 497if (self.Count < 2) 527if (self.Count < 2) 541if (self.Count < 2) 560if (self.Count < 2)
src\Dependencies\Collections\ImmutableSegmentedListExtensions.cs (3)
67return immutableList.Count > 0 68? immutableList[immutableList.Count - 1] 91for (var i = immutableList.Count - 1; i >= 0; i--)
Workspace\ProjectSystem\ProjectSystemProject.BatchingDocumentCollection.cs (1)
395var documentsToChange = ArrayBuilder<(DocumentId, TextLoader)>.GetInstance(filePaths.Count);