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