2 writes to _count
System.Private.CoreLib (2)
src\System\RuntimeType.CoreCLR.cs (2)
63
_count
= 0;
128
_count
++;
12 references to _count
System.Private.CoreLib (12)
src\System\RuntimeType.CoreCLR.cs (12)
78
if (
_count
== 0)
80
if (
_count
== 1)
83
Array.Resize(ref _items,
_count
);
84
_capacity =
_count
;
90
if (
_count
== 0)
93
if (
_count
== 1)
99
Array.Copy(_items!, 0, array, index,
_count
);
102
public int Count =>
_count
;
106
if (
_count
== 0)
112
if (
_count
== 1)
119
else if (_capacity ==
_count
)
126
_items![
_count
] = item;