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