1 write to _dictionary
System.Private.CoreLib (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Collections\Generic\Dictionary.cs (1)
2005_dictionary = dictionary;
10 references to _dictionary
System.Private.CoreLib (10)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Collections\Generic\Dictionary.cs (10)
2008public Enumerator GetEnumerator() => new Enumerator(_dictionary); 2022if (array.Length - index < _dictionary.Count) 2027int count = _dictionary._count; 2028Entry[]? entries = _dictionary._entries; 2035public int Count => _dictionary.Count; 2046_dictionary.ContainsKey(item); 2082if (array.Length - index < _dictionary.Count) 2099int count = _dictionary._count; 2100Entry[]? entries = _dictionary._entries; 2117object ICollection.SyncRoot => ((ICollection)_dictionary).SyncRoot;