3 writes to value
System (3)
compmod\system\collections\specialized\listdictionary.cs (3)
86node.value = value; 92newNode.value = value; 189newNode.value = value;
7 references to value
System (7)
compmod\system\collections\specialized\listdictionary.cs (7)
54return node.value; 63return node.value; 237array.SetValue(new DictionaryEntry(node.key, node.value), index); 306return new DictionaryEntry(current.key, current.value); 324return current.value; 368array.SetValue(isKeys ? node.key : node.value, index); 420return isKeys ? current.key : current.value;