2 writes to _count
System.Private.CoreLib (2)
src\System\RuntimeType.CoreCLR.cs (2)
68
_count
= 0;
133
_count
++;
12 references to _count
System.Private.CoreLib (12)
src\System\RuntimeType.CoreCLR.cs (12)
83
if (
_count
== 0)
85
if (
_count
== 1)
88
Array.Resize(ref _items,
_count
);
89
_capacity =
_count
;
95
if (
_count
== 0)
98
if (
_count
== 1)
104
Array.Copy(_items!, 0, array, index,
_count
);
107
public int Count =>
_count
;
111
if (
_count
== 0)
117
if (
_count
== 1)
124
else if (_capacity ==
_count
)
131
_items![
_count
] = item;