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