3 writes to value
System.Collections.Specialized (3)
System\Collections\Specialized\ListDictionary.cs (3)
82node.value = value; 88newNode.value = value; 170newNode.value = value;
7 references to value
System.Collections.Specialized (7)
System\Collections\Specialized\ListDictionary.cs (7)
44return node.value; 56return node.value; 215array.SetValue(new DictionaryEntry(node.key, node.value), index); 294return new DictionaryEntry(_current.key, _current.value); 318return _current.value; 370array.SetValue(_isKeys ? node.key : node.value, index); 435return _isKeys ? _current.key : _current.value;