1 write to _dictionary
System.Collections (1)
System\Collections\Generic\SortedDictionary.cs (1)
523_dictionary = dictionary;
7 references to _dictionary
System.Collections (7)
System\Collections\Generic\SortedDictionary.cs (7)
526public Enumerator GetEnumerator() => new Enumerator(_dictionary); 545_dictionary._set.InOrderTreeWalk(delegate (TreeSet<KeyValuePair<TKey, TValue>>.Node node) { array[index++] = node.Item.Key; return true; }); 564if (array.Length - index < _dictionary.Count) 578_dictionary._set.InOrderTreeWalk(delegate (TreeSet<KeyValuePair<TKey, TValue>>.Node node) { objects[index++] = node.Item.Key; return true; }); 589get { return _dictionary.Count; } 609return _dictionary.ContainsKey(item); 624get { return ((ICollection)_dictionary).SyncRoot; }