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