3 writes to value
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Collections\ListDictionaryInternal.cs (3)
64
node.
value
= value;
70
newNode.
value
= value;
115
newNode.
value
= value;
7 references to value
System.Private.CoreLib (7)
src\libraries\System.Private.CoreLib\src\System\Collections\ListDictionaryInternal.cs (7)
40
return node.
value
;
162
array.SetValue(new DictionaryEntry(node.key, node.
value
), index);
232
return new DictionaryEntry(current.key, current.
value
);
256
return current.
value
;
314
array.SetValue(isKeys ? node.key : node.
value
, index);
366
return isKeys ? current.key : current.
value
;
430
array[index++] = new DebugViewDictionaryItem<object, object?>(node.key, node.
value
);