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