12 references to Count
Microsoft.CodeAnalysis.Features (6)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (6)
2022
Contract.ThrowIfFalse(oldTypedNodes.
Count
== newTypedNodes.
Count
);
2024
for (var t = 0; t < oldTypedNodes.
Count
; t++)
6584
Debug.Assert(rootNodes.
Count
== otherRootNodes.
Count
);
6586
for (var i = 0; i < rootNodes.
Count
; i++)
Microsoft.CodeAnalysis.Workspaces (6)
Options\GlobalOptionService.cs (1)
150
using var _ = ArrayBuilder<(OptionKey2, object?)>.GetInstance(options.
Count
, out var changedOptions);
src\Dependencies\Collections\OneOrMany.cs (5)
92
=>
Count
== 0;
195
if (
Count
!= other.
Count
)
249
return _index < _collection.
Count
;
264
=> "Count = " +
Count
;