6 writes to _entry
Microsoft.Build (6)
Collections\MultiDictionary.cs (6)
180_entry = first; 244_entry = value; 249_entry = list; 272_entry = null; 289_entry = list[1]; 293_entry = list[0];
14 references to _entry
Microsoft.Build (14)
Collections\MultiDictionary.cs (14)
190if (_entry == null) 195if (!(_entry is List<TT> list)) 209if (_entry == null) 213else if (_entry is TT) 215yield return (TT)_entry; 219var list = _entry as List<TT>; 242if (_entry == null) 246else if (_entry is TT) 248var list = new List<TT> { (TT)_entry, value }; 253var list = _entry as List<TT>; 264if (_entry == null) 268else if (_entry is TT) 270if (ReferenceEquals((TT)_entry, value)) 279var list = _entry as List<TT>;