Implemented interface members:
12 references to Count
Microsoft.Build.Framework (12)
ImmutableSegmentedList`1.cs (2)
81public int Count => _list.Count; 86public bool IsEmpty => _list.Count == 0;
ImmutableSegmentedList`1+ValueBuilder.cs (3)
33public int Count => ReadOnlyList.Count; 62if ((uint)index >= (uint)ReadOnlyList.Count) 106if (ReadOnlyList.Count != 0)
SegmentedList`1.cs (7)
260return Count - 1; 306=> BinarySearch(0, Count, item, null); 309=> BinarySearch(0, Count, item, comparer); 774SegmentedArray.Copy(list._items, 0, _items, index, list.Count); 1032=> Reverse(0, Count); 1064=> Sort(0, Count, null); 1069=> Sort(0, Count, comparer);