4 writes to hashCode
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Collections\Generic\Dictionary.cs (4)
621entry.hashCode = hashCode; 1031entry.hashCode = hashCode; 1168entry.hashCode = hashCode; 1269entries[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)
429if (entry.hashCode == hashCode && EqualityComparer<TKey>.Default.Equals(entry.key, key)) 460if (entry.hashCode == hashCode && comparer.Equals(entry.key, key)) 539if (entries[i].hashCode == hashCode && EqualityComparer<TKey>.Default.Equals(entries[i].key, key)) 571if (entries[i].hashCode == hashCode && comparer.Equals(entries[i].key, key)) 826if (entry.hashCode == hashCode && comparer.Equals(key, entry.key)) 892if (entry.hashCode == hashCode && comparer.Equals(key, entry.key)) 985if (entries[i].hashCode == hashCode && comparer.Equals(key, entries[i].key)) 1104if (entries[i].hashCode == hashCode && EqualityComparer<TKey>.Default.Equals(entries[i].key, key)) 1127if (entries[i].hashCode == hashCode && comparer.Equals(entries[i].key, key)) 1283ref int bucket = ref GetBucket(entries[i].hashCode); 1320if (entry.hashCode == hashCode && 1393if (entry.hashCode == hashCode && 1616uint hashCode = entries[i].hashCode;