1 write to _dictionary
System.Collections (1)
System\Collections\Generic\SortedDictionary.cs (1)
525
_dictionary
= dictionary;
7 references to _dictionary
System.Collections (7)
System\Collections\Generic\SortedDictionary.cs (7)
528
public Enumerator GetEnumerator() => new Enumerator(
_dictionary
);
547
_dictionary
._set.InOrderTreeWalk(delegate (TreeSet<KeyValuePair<TKey, TValue>>.Node node) { array[index++] = node.Item.Key; return true; });
566
if (array.Length - index <
_dictionary
.Count)
580
_dictionary
._set.InOrderTreeWalk(delegate (TreeSet<KeyValuePair<TKey, TValue>>.Node node) { objects[index++] = node.Item.Key; return true; });
591
get { return
_dictionary
.Count; }
611
return
_dictionary
.ContainsKey(item);
626
get { return ((ICollection)
_dictionary
).SyncRoot; }