3 writes to _buckets
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Collections\Generic\Dictionary.cs (3)
499_buckets = buckets; 814_buckets = null; 850_buckets = new int[newSize];
14 references to _buckets
System.Private.CoreLib (14)
src\libraries\System.Private.CoreLib\src\System\Collections\Generic\Dictionary.cs (14)
285Debug.Assert(_buckets != null, "_buckets should be non-null"); 288Array.Clear(_buckets); 387info.AddValue(HashSizeName, _buckets == null ? 0 : _buckets.Length); // This is the length of the bucket array 389if (_buckets != null) 405if (_buckets != null) 515if (_buckets == null) 519Debug.Assert(_buckets != null); 656if (dictionary._buckets == null) 660Debug.Assert(dictionary._buckets != null); 878if (_buckets != null) 951if (_buckets != null) 1127if (_buckets == null) 1320int[] buckets = _buckets!;