Implemented interface member:
17 references to Count
Microsoft.CodeAnalysis.Analyzers (17)
src\RoslynAnalyzers\Utilities\Compiler\PooledObjects\ArrayBuilder.cs (16)
36var result = new T[_builder.Count]; 154=> FindIndex(0, this.Count, match); 157=> FindIndex(startIndex, this.Count - startIndex, match); 238if (Count == 0) 252if (Count == 0) 257var tmp = ArrayBuilder<U>.GetInstance(Count); 272if (_builder.Capacity == Count) 314if (this.Count != 0) 335Debug.Assert(builder.Count == 0); 391if (this.Count == 1) 399if (this.Count == 0) 406var accumulator = new Dictionary<K, ArrayBuilder<T>>(Count, comparer); 407for (int i = 0; i < Count; i++) 481Debug.Assert(limit <= Count); 504for (int i = 0; i < Count; i++) 518using var result = ArrayBuilder<S>.GetInstance(Count);
src\RoslynAnalyzers\Utilities\Compiler\PooledObjects\ArrayBuilder.Enumerator.cs (1)
32return _index < _builder.Count;