1 write to _dictionary
System.Collections (1)
System\Collections\Generic\OrderedDictionary.cs (1)
1669
internal ValueCollection(OrderedDictionary<TKey, TValue> dictionary) =>
_dictionary
= dictionary;
15 references to _dictionary
System.Collections (15)
System\Collections\Generic\OrderedDictionary.cs (15)
1672
public int Count =>
_dictionary
.Count;
1687
object ICollection.SyncRoot => ((ICollection)
_dictionary
).SyncRoot;
1695
OrderedDictionary<TKey, TValue> dictionary =
_dictionary
;
1713
public Enumerator GetEnumerator() => new(
_dictionary
);
1718
get =>
_dictionary
.GetAt(index).Value;
1723
TValue IReadOnlyList<TValue>.this[int index] =>
_dictionary
.GetAt(index).Value;
1728
get =>
_dictionary
.GetAt(index).Value;
1733
bool ICollection<TValue>.Contains(TValue item) =>
_dictionary
.ContainsValue(item);
1746
Entry[]? entries =
_dictionary
._entries;
1749
int count =
_dictionary
._count;
1786
_dictionary
.ContainsValue(default!) :
1787
value is TValue tvalue &&
_dictionary
.ContainsValue(tvalue);
1792
Entry[]? entries =
_dictionary
._entries;
1795
int count =
_dictionary
._count;
1848
if (array.Length - index <
_dictionary
.Count)