1 write to _dictionary
System.Collections (1)
System\Collections\Generic\OrderedDictionary.cs (1)
1674internal ValueCollection(OrderedDictionary<TKey, TValue> dictionary) => _dictionary = dictionary;
15 references to _dictionary
System.Collections (15)
System\Collections\Generic\OrderedDictionary.cs (15)
1677public int Count => _dictionary.Count; 1692object ICollection.SyncRoot => ((ICollection)_dictionary).SyncRoot; 1700OrderedDictionary<TKey, TValue> dictionary = _dictionary; 1718public Enumerator GetEnumerator() => new(_dictionary); 1723get => _dictionary.GetAt(index).Value; 1728TValue IReadOnlyList<TValue>.this[int index] => _dictionary.GetAt(index).Value; 1733get => _dictionary.GetAt(index).Value; 1738bool ICollection<TValue>.Contains(TValue item) => _dictionary.ContainsValue(item); 1751Entry[]? entries = _dictionary._entries; 1754int count = _dictionary._count; 1791_dictionary.ContainsValue(default!) : 1792value is TValue tvalue && _dictionary.ContainsValue(tvalue); 1797Entry[]? entries = _dictionary._entries; 1800int count = _dictionary._count; 1853if (array.Length - index < _dictionary.Count)