1 write to dictionary
System (1)
compmod\system\collections\generic\sorteddictionary.cs (1)
455this.dictionary = dictionary;
9 references to dictionary
System (9)
compmod\system\collections\generic\sorteddictionary.cs (9)
459return new Enumerator(dictionary); 463return new Enumerator(dictionary); 467return new Enumerator(dictionary); 483dictionary._set.InOrderTreeWalk( delegate(TreeSet<KeyValuePair<TKey, TValue>>.Node node){ array[index++] = node.Item.Key; return true;}); 503if (array.Length - index < dictionary.Count) { 518dictionary._set.InOrderTreeWalk( delegate(TreeSet<KeyValuePair<TKey, TValue>>.Node node){ objects[index++] = node.Item.Key; return true;}); 527get { return dictionary.Count;} 543return dictionary.ContainsKey(item); 556get { return ((ICollection)dictionary).SyncRoot; }