1 write to _dictionary
ReachFramework (1)
MS\Internal\Printing\MostFrequentlyUsedCache.cs (1)
15
this.
_dictionary
= new Dictionary<K, Entry>(maxEntries);
7 references to _dictionary
ReachFramework (7)
MS\Internal\Printing\MostFrequentlyUsedCache.cs (7)
22
if(!this.
_dictionary
.TryGetValue(key, out entry))
27
while(this.
_dictionary
.Count >= this._maxEntries)
32
Debug.Assert(this.
_dictionary
.Count <= this._maxEntries);
34
this.
_dictionary
.Add(key, entry);
46
if(this.
_dictionary
.TryGetValue(key, out entry))
63
foreach(KeyValuePair<K, Entry> pair in this.
_dictionary
)
75
this.
_dictionary
.Remove(minUseCountKey);