Implemented interface member:
11 references to Count
Aspire.Hosting (11)
src\Shared\CircularBuffer.cs (11)
44public bool IsFull => Count == Capacity; 46public bool IsEmpty => Count == 0; 60for (var index = 0; index < Count; ++index) 73if (index == Count) 169if (index >= Count) 171throw new InvalidOperationException($"Cannot access index {index}. Buffer size is {Count}"); 223if (array.Length - arrayIndex < Count) 228for (var index = 0; index < Count; ++index) 241var array = new T[Count]; 242for (var index = 0; index < Count; ++index) 252for (var i = 0; i < Count; ++i)