1 write to _dictionary
System.Collections (1)
System\Collections\Generic\OrderedDictionary.cs (1)
1640internal ValueCollection(OrderedDictionary<TKey, TValue> dictionary) => _dictionary = dictionary;
15 references to _dictionary
System.Collections (15)
System\Collections\Generic\OrderedDictionary.cs (15)
1643public int Count => _dictionary.Count; 1658object ICollection.SyncRoot => ((ICollection)_dictionary).SyncRoot; 1666OrderedDictionary<TKey, TValue> dictionary = _dictionary; 1684public Enumerator GetEnumerator() => new(_dictionary); 1689get => _dictionary.GetAt(index).Value; 1694TValue IReadOnlyList<TValue>.this[int index] => _dictionary.GetAt(index).Value; 1699get => _dictionary.GetAt(index).Value; 1704bool ICollection<TValue>.Contains(TValue item) => _dictionary.ContainsValue(item); 1717Entry[]? entries = _dictionary._entries; 1720int count = _dictionary._count; 1757_dictionary.ContainsValue(default!) : 1758value is TValue tvalue && _dictionary.ContainsValue(tvalue); 1763Entry[]? entries = _dictionary._entries; 1766int count = _dictionary._count; 1819if (array.Length - index < _dictionary.Count)