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