1 write to _dictionary
System.Collections (1)
System\Collections\Generic\OrderedDictionary.cs (1)
1668internal ValueCollection(OrderedDictionary<TKey, TValue> dictionary) => _dictionary = dictionary;
15 references to _dictionary
System.Collections (15)
System\Collections\Generic\OrderedDictionary.cs (15)
1671public int Count => _dictionary.Count; 1686object ICollection.SyncRoot => ((ICollection)_dictionary).SyncRoot; 1694OrderedDictionary<TKey, TValue> dictionary = _dictionary; 1712public Enumerator GetEnumerator() => new(_dictionary); 1717get => _dictionary.GetAt(index).Value; 1722TValue IReadOnlyList<TValue>.this[int index] => _dictionary.GetAt(index).Value; 1727get => _dictionary.GetAt(index).Value; 1732bool ICollection<TValue>.Contains(TValue item) => _dictionary.ContainsValue(item); 1745Entry[]? entries = _dictionary._entries; 1748int count = _dictionary._count; 1785_dictionary.ContainsValue(default!) : 1786value is TValue tvalue && _dictionary.ContainsValue(tvalue); 1791Entry[]? entries = _dictionary._entries; 1794int count = _dictionary._count; 1847if (array.Length - index < _dictionary.Count)