4 writes to hashCode
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Collections\Generic\Dictionary.cs (4)
620entry.hashCode = hashCode; 1030entry.hashCode = hashCode; 1167entry.hashCode = hashCode; 1268entries[i].hashCode = (uint)comparer.GetHashCode(entries[i].key);
13 references to hashCode
System.Private.CoreLib (13)
src\libraries\System.Private.CoreLib\src\System\Collections\Generic\Dictionary.cs (13)
428if (entry.hashCode == hashCode && EqualityComparer<TKey>.Default.Equals(entry.key, key)) 459if (entry.hashCode == hashCode && comparer.Equals(entry.key, key)) 538if (entries[i].hashCode == hashCode && EqualityComparer<TKey>.Default.Equals(entries[i].key, key)) 570if (entries[i].hashCode == hashCode && comparer.Equals(entries[i].key, key)) 825if (entry.hashCode == hashCode && comparer.Equals(key, entry.key)) 891if (entry.hashCode == hashCode && comparer.Equals(key, entry.key)) 984if (entries[i].hashCode == hashCode && comparer.Equals(key, entries[i].key)) 1103if (entries[i].hashCode == hashCode && EqualityComparer<TKey>.Default.Equals(entries[i].key, key)) 1126if (entries[i].hashCode == hashCode && comparer.Equals(entries[i].key, key)) 1282ref int bucket = ref GetBucket(entries[i].hashCode); 1319if (entry.hashCode == hashCode && 1392if (entry.hashCode == hashCode && 1615uint hashCode = entries[i].hashCode;