4 writes to value
mscorlib (4)
system\collections\listdictionaryinternal.cs (4)
75node.value = value; 81newNode.value = value; 162node.value = value; 168newNode.value = value;
6 references to value
mscorlib (6)
system\collections\listdictionaryinternal.cs (6)
44return node.value; 212array.SetValue(new DictionaryEntry(node.key, node.value), index); 275return new DictionaryEntry(current.key, current.value); 293return current.value; 344array.SetValue(isKeys ? node.key : node.value, index); 396return isKeys ? current.key : current.value;