1 write to dictionary
System (1)
compmod\system\collections\generic\sorteddictionary.cs (1)
610this.dictionary = dictionary;
9 references to dictionary
System (9)
compmod\system\collections\generic\sorteddictionary.cs (9)
614return new Enumerator(dictionary); 618return new Enumerator(dictionary); 622return new Enumerator(dictionary); 638dictionary._set.InOrderTreeWalk( delegate(TreeSet<KeyValuePair<TKey, TValue>>.Node node){ array[index++] = node.Item.Value; return true;}); 658if (array.Length - index < dictionary.Count) { 673dictionary._set.InOrderTreeWalk( delegate(TreeSet<KeyValuePair<TKey, TValue>>.Node node){ objects[index++] = node.Item.Value; return true;}); 682get { return dictionary.Count;} 698return dictionary.ContainsValue(item); 711get { return ((ICollection)dictionary).SyncRoot; }