1 write to _dictionary
System.Collections (1)
System\Collections\Generic\OrderedDictionary.cs (1)
1673internal ValueCollection(OrderedDictionary<TKey, TValue> dictionary) => _dictionary = dictionary;
15 references to _dictionary
System.Collections (15)
System\Collections\Generic\OrderedDictionary.cs (15)
1676public int Count => _dictionary.Count; 1691object ICollection.SyncRoot => ((ICollection)_dictionary).SyncRoot; 1699OrderedDictionary<TKey, TValue> dictionary = _dictionary; 1717public Enumerator GetEnumerator() => new(_dictionary); 1722get => _dictionary.GetAt(index).Value; 1727TValue IReadOnlyList<TValue>.this[int index] => _dictionary.GetAt(index).Value; 1732get => _dictionary.GetAt(index).Value; 1737bool ICollection<TValue>.Contains(TValue item) => _dictionary.ContainsValue(item); 1750Entry[]? entries = _dictionary._entries; 1753int count = _dictionary._count; 1790_dictionary.ContainsValue(default!) : 1791value is TValue tvalue && _dictionary.ContainsValue(tvalue); 1796Entry[]? entries = _dictionary._entries; 1799int count = _dictionary._count; 1852if (array.Length - index < _dictionary.Count)