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