1 write to _dictionary
ReachFramework (1)
MS\Internal\Printing\MostFrequentlyUsedCache.cs (1)
16
this.
_dictionary
= new Dictionary<K, Entry>(maxEntries);
7 references to _dictionary
ReachFramework (7)
MS\Internal\Printing\MostFrequentlyUsedCache.cs (7)
23
if(!this.
_dictionary
.TryGetValue(key, out entry))
28
while(this.
_dictionary
.Count >= this._maxEntries)
33
Debug.Assert(this.
_dictionary
.Count <= this._maxEntries);
35
this.
_dictionary
.Add(key, entry);
47
if(this.
_dictionary
.TryGetValue(key, out entry))
64
foreach(KeyValuePair<K, Entry> pair in this.
_dictionary
)
76
this.
_dictionary
.Remove(minUseCountKey);