6 writes to _entry
Microsoft.Build (6)
Collections\MultiDictionary.cs (6)
189_entry = first; 253_entry = value; 258_entry = list; 281_entry = null; 298_entry = list[1]; 302_entry = list[0];
14 references to _entry
Microsoft.Build (14)
Collections\MultiDictionary.cs (14)
199if (_entry == null) 204if (!(_entry is List<TT> list)) 218if (_entry == null) 222else if (_entry is TT) 224yield return (TT)_entry; 228var list = _entry as List<TT>; 251if (_entry == null) 255else if (_entry is TT) 257var list = new List<TT> { (TT)_entry, value }; 262var list = _entry as List<TT>; 273if (_entry == null) 277else if (_entry is TT) 279if (ReferenceEquals((TT)_entry, value)) 288var list = _entry as List<TT>;