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) 170if (index >= Count) 172throw new InvalidOperationException($"Cannot access index {index}. Buffer size is {Count}"); 227if (array.Length - arrayIndex < Count) 232for (var index = 0; index < Count; ++index) 245var array = new T[Count]; 246for (var index = 0; index < Count; ++index) 256for (var i = 0; i < Count; ++i)