1 write to _dictionary
System.Collections (1)
System\Collections\Generic\OrderedDictionary.cs (1)
1665internal ValueCollection(OrderedDictionary<TKey, TValue> dictionary) => _dictionary = dictionary;
15 references to _dictionary
System.Collections (15)
System\Collections\Generic\OrderedDictionary.cs (15)
1668public int Count => _dictionary.Count; 1683object ICollection.SyncRoot => ((ICollection)_dictionary).SyncRoot; 1691OrderedDictionary<TKey, TValue> dictionary = _dictionary; 1709public Enumerator GetEnumerator() => new(_dictionary); 1714get => _dictionary.GetAt(index).Value; 1719TValue IReadOnlyList<TValue>.this[int index] => _dictionary.GetAt(index).Value; 1724get => _dictionary.GetAt(index).Value; 1729bool ICollection<TValue>.Contains(TValue item) => _dictionary.ContainsValue(item); 1742Entry[]? entries = _dictionary._entries; 1745int count = _dictionary._count; 1782_dictionary.ContainsValue(default!) : 1783value is TValue tvalue && _dictionary.ContainsValue(tvalue); 1788Entry[]? entries = _dictionary._entries; 1791int count = _dictionary._count; 1844if (array.Length - index < _dictionary.Count)