6 writes to _entry
Microsoft.Build (6)
Collections\MultiDictionary.cs (6)
188_entry = first; 252_entry = value; 257_entry = list; 280_entry = null; 297_entry = list[1]; 301_entry = list[0];
14 references to _entry
Microsoft.Build (14)
Collections\MultiDictionary.cs (14)
198if (_entry == null) 203if (!(_entry is List<TT> list)) 217if (_entry == null) 221else if (_entry is TT) 223yield return (TT)_entry; 227var list = _entry as List<TT>; 250if (_entry == null) 254else if (_entry is TT) 256var list = new List<TT> { (TT)_entry, value }; 261var list = _entry as List<TT>; 272if (_entry == null) 276else if (_entry is TT) 278if (ReferenceEquals((TT)_entry, value)) 287var list = _entry as List<TT>;