1 implementation of Count
Microsoft.VisualStudio.LanguageServices.Implementation (1)
CodeModel\Collections\AbstractCodeElementCollection.cs (1)
39public abstract int Count { get; }
3 references to Count
Microsoft.VisualStudio.LanguageServices.Implementation (3)
CodeModel\Collections\CodeElementSnapshot.cs (1)
20var count = codeElements.Count;
CodeModel\Collections\UnionCollection.cs (2)
45var count = collection.Count; 75get { return _collections.Sum(c => c.Count); }