2 writes to key
mscorlib (2)
system\collections\listdictionaryinternal.cs (2)
80newNode.key = key; 167newNode.key = key;
11 references to key
mscorlib (11)
system\collections\listdictionaryinternal.cs (11)
43if ( node.key.Equals(key) ) { 68if( node.key.Equals(key) ) { 155if (node.key.Equals(key)) { 156throw new ArgumentException(Environment.GetResourceString("Argument_AddingDuplicate__", node.key, key)); 190if (node.key.Equals(key)) { 212array.SetValue(new DictionaryEntry(node.key, node.value), index); 234if (node.key.Equals(key)) { 275return new DictionaryEntry(current.key, current.value); 284return current.key; 344array.SetValue(isKeys ? node.key : node.value, index); 396return isKeys ? current.key : current.value;