3 writes to _nodes
Microsoft.Build (3)
Collections\ItemDictionary.cs (3)
57_nodes = new Dictionary<T, LinkedListNode<T>>(); 68_nodes = new Dictionary<T, LinkedListNode<T>>(initialItemsCapacity); 78_nodes = new Dictionary<T, LinkedListNode<T>>();
10 references to _nodes
Microsoft.Build (10)
Collections\ItemDictionary.cs (10)
85public int Count => _nodes.Count; 144_nodes.Clear(); 232return _nodes.ContainsKey(projectItem); 271if (!_nodes.TryGetValue(projectItem, out LinkedListNode<T> node)) 278_nodes.Remove(projectItem); 302if (_nodes.TryGetValue(existingItem, out LinkedListNode<T> node)) 305_nodes.Remove(existingItem); 306_nodes.Add(newItem, node); 343_nodes.Add(item, node); 403_nodes.Add(projectItem, node);