Implemented interface members:
15 references to Count
Microsoft.CodeAnalysis.CodeStyle (15)
src\Compilers\Core\Portable\Collections\ImmutableArrayExtensions.cs (1)
1277
int high = array.
Count
- 1;
src\Dependencies\Collections\ImmutableSegmentedList`1.cs (11)
130
if (unchecked((uint)index) >= (uint)self.
Count
)
295
if (index == 0 && count == self.
Count
)
312
if (index == self.
Count
)
327
if (index == self.
Count
)
343
if (count < 0 || count > self.
Count
)
375
var index = self.IndexOf(value, 0,
Count
, equalityComparer);
454
if (count == 0 && index >= 0 && index <= self.
Count
)
497
if (self.
Count
< 2)
527
if (self.
Count
< 2)
541
if (self.
Count
< 2)
560
if (self.
Count
< 2)
src\Dependencies\Collections\ImmutableSegmentedListExtensions.cs (3)
67
return immutableList.
Count
> 0
68
? immutableList[immutableList.
Count
- 1]
91
for (var i = immutableList.
Count
- 1; i >= 0; i--)