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