Implemented interface members:
15 references to Count
Microsoft.Build.Framework (15)
ImmutableSegmentedDictionary`2.cs (3)
84public int Count => _dictionary.Count; 86public bool IsEmpty => _dictionary.Count == 0; 90public bool IsDefaultOrEmpty => _dictionary?.Count is null or 0;
ImmutableSegmentedDictionary`2+Builder.cs (2)
54public int Count => ReadOnlyDictionary.Count; 123if (ReadOnlyDictionary.Count != 0)
SegmentedDictionary`2.cs (10)
305if (array.Length - index < Count) 867if (array.Length - index < Count) 958=> TrimExcess(Count); 969if (capacity < Count) 1287if (array.Length - index < _dictionary.Count) 1301public int Count => _dictionary.Count; 1348if (array.Length - index < _dictionary.Count) 1487if (array.Length - index < _dictionary.Count) 1501public int Count => _dictionary.Count; 1548if (array.Length - index < _dictionary.Count)