Implemented interface members:
18 references to Count
Microsoft.CodeAnalysis.InteractiveHost (18)
src\Dependencies\Collections\Segmented\ImmutableSegmentedDictionary`2.cs (3)
86public int Count => _dictionary.Count; 88public bool IsEmpty => _dictionary.Count == 0; 92public bool IsDefaultOrEmpty => _dictionary?.Count is null or 0;
src\Dependencies\Collections\Segmented\ImmutableSegmentedDictionary`2+ValueBuilder.cs (2)
58public readonly int Count => ReadOnlyDictionary.Count; 132if (ReadOnlyDictionary.Count != 0)
src\Dependencies\Collections\Segmented\SegmentedDictionary`2.cs (13)
160if (source.Count == 0) 168Debug.Assert(_entries.Length >= source.Count); 370if (array.Length - index < Count) 390Count == 0 ? GetEmptyEnumerator() : 897if (array.Length - index < Count) 988=> TrimExcess(Count); 999if (capacity < Count) 1325if (array.Length - index < _dictionary.Count) 1339public int Count => _dictionary.Count; 1392if (array.Length - index < _dictionary.Count) 1533if (array.Length - index < _dictionary.Count) 1547public int Count => _dictionary.Count; 1600if (array.Length - index < _dictionary.Count)