5 writes to _count
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Collections\Hashtable.cs (5)
437
_count
= 0;
452
ht.
_count
= 0;
876
_count
++;
924
_count
++;
998
_count
--;
12 references to _count
System.Private.CoreLib (12)
src\libraries\System.Private.CoreLib\src\System\Collections\Hashtable.cs (12)
426
if (
_count
== 0 && _occupancy == 0)
449
Hashtable ht = new Hashtable(
_count
, _keycomparer);
587
var array = new DebugViewDictionaryItem<object, object?>[
_count
];
834
if (
_count
>= _loadsize)
838
else if (_occupancy > _loadsize &&
_count
> 100)
1012
public virtual int Count =>
_count
;
1066
object[] serKeys = new object[
_count
];
1067
object[] serValues = new object[
_count
];
1196
if (array.Length - arrayIndex < _hashtable.
_count
)
1210
public int Count => _hashtable.
_count
;
1231
if (array.Length - arrayIndex < _hashtable.
_count
)
1245
public int Count => _hashtable.
_count
;