2 writes to Key
System.Collections (2)
System\Collections\Generic\OrderedDictionary.cs (2)
462entry.Key = key; 840e.Key = key;
11 references to Key
System.Collections (11)
System\Collections\Generic\OrderedDictionary.cs (11)
589return new(e.Key, e.Value); 641if (entry.HashCode == hashCode && EqualityComparer<TKey>.Default.Equals(entry.Key, key)) 670if (entry.HashCode == hashCode && comparer.Equals(entry.Key, key)) 811if (EqualityComparer<TKey>.Default.Equals(key, e.Key)) 820if (_comparer.Equals(key, e.Key)) 1087newEntries[i].HashCode = (uint)comparer.GetHashCode(newEntries[i].Key); 1188array[arrayIndex++] = new(entry.Key, entry.Value); 1351/// <summary>Cached hash code of <see cref="Key"/>.</summary> 1355/// <summary>The value associated with <see cref="Key"/>.</summary> 1411Current = new KeyValuePair<TKey, TValue>(entry.Key, entry.Value); 1489array[arrayIndex++] = entries[i].Key;