2 writes to key
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Collections\ListDictionaryInternal.cs (2)
69newNode.key = key; 114newNode.key = key;
12 references to key
System.Private.CoreLib (12)
src\libraries\System.Private.CoreLib\src\System\Collections\ListDictionaryInternal.cs (12)
38if (node.key.Equals(key)) 55if (node.key.Equals(key)) 105if (node.key.Equals(key)) 107throw new ArgumentException(SR.Format(SR.Argument_AddingDuplicate__, node.key, key)); 140if (node.key.Equals(key)) 162array.SetValue(new DictionaryEntry(node.key, node.value), index); 186if (node.key.Equals(key)) 232return new DictionaryEntry(current.key, current.value); 244return current.key; 314array.SetValue(isKeys ? node.key : node.value, index); 366return isKeys ? current.key : current.value; 430array[index++] = new DebugViewDictionaryItem<object, object?>(node.key, node.value);