1 write to _dictionary
ReachFramework (1)
MS\Internal\Printing\MostFrequentlyUsedCache.cs (1)
22
this.
_dictionary
= new Dictionary<K, Entry>(maxEntries);
7 references to _dictionary
ReachFramework (7)
MS\Internal\Printing\MostFrequentlyUsedCache.cs (7)
29
if(!this.
_dictionary
.TryGetValue(key, out entry))
34
while(this.
_dictionary
.Count >= this._maxEntries)
39
Debug.Assert(this.
_dictionary
.Count <= this._maxEntries);
41
this.
_dictionary
.Add(key, entry);
53
if(this.
_dictionary
.TryGetValue(key, out entry))
70
foreach(KeyValuePair<K, Entry> pair in this.
_dictionary
)
82
this.
_dictionary
.Remove(minUseCountKey);