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