Implemented interface members:
19 references to Count
Microsoft.CodeAnalysis (19)
PEWriter\FullMetadataWriter.cs (1)
463
get { return _rows.
Count
+ 1; }
src\Dependencies\Collections\ImmutableSegmentedList`1.cs (2)
81
public int Count => _list.
Count
;
86
public bool IsEmpty => _list.
Count
== 0;
src\Dependencies\Collections\ImmutableSegmentedList`1+ValueBuilder.cs (3)
33
public readonly int Count => ReadOnlyList.
Count
;
62
if ((uint)index >= (uint)ReadOnlyList.
Count
)
106
if (ReadOnlyList.
Count
!= 0)
src\Dependencies\Collections\SegmentedList`1.cs (9)
288
return
Count
- 1;
314
SegmentedArray.Copy(list._items, 0, _items, _size, list.
Count
);
377
=> BinarySearch(0,
Count
, item, null);
380
=> BinarySearch(0,
Count
, item, comparer);
735
Count
== 0 ? GetEmptyEnumerator() :
926
SegmentedArray.Copy(list._items, 0, _items, index, list.
Count
);
1184
=> Reverse(0,
Count
);
1216
=> Sort(0,
Count
, null);
1221
=> Sort(0,
Count
, comparer);
Text\SourceText.cs (4)
974
public override int Count => _lineStarts.
Count
;
980
if (index < 0 || index >= _lineStarts.
Count
)
986
if (index == _lineStarts.
Count
- 1)
1012
var limit = Math.Min(_lineStarts.
Count
, lastLineNumber + 4);