2 writes to _count
System.Private.CoreLib (2)
src\System\RuntimeType.CoreCLR.cs (2)
61
_count
= 0;
126
_count
++;
12 references to _count
System.Private.CoreLib (12)
src\System\RuntimeType.CoreCLR.cs (12)
76
if (
_count
== 0)
78
if (
_count
== 1)
81
Array.Resize(ref _items,
_count
);
82
_capacity =
_count
;
88
if (
_count
== 0)
91
if (
_count
== 1)
97
Array.Copy(_items!, 0, array, index,
_count
);
100
public int Count =>
_count
;
104
if (
_count
== 0)
110
if (
_count
== 1)
117
else if (_capacity ==
_count
)
124
_items![
_count
] = item;