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