1 write to dict
mscorlib (1)
system\collections\objectmodel\keyedcollection.cs (1)
219dict = new Dictionary<TKey,TItem>(comparer);
20 references to dict
mscorlib (20)
system\collections\objectmodel\keyedcollection.cs (20)
63if (dict != null) { 64return dict[key]; 81if (dict != null) { 82return dict.ContainsKey(key); 95if( (dict == null) || ((key = GetKeyForItem(item)) == null)) { 100bool exist = dict.TryGetValue(key, out itemInDict); 112if (dict != null) { 113if (dict.ContainsKey(key)) { 114return Remove(dict[key]); 132get { return dict; } 155if (dict != null) { 156dict.Clear(); 185if (newKey != null && dict != null) { 186dict[newKey] = item; 202if (dict != null) { 203dict.Add(key, item); 207dict.Add(key, item); 223dict.Add(key, item); 230if (dict != null) { 231dict.Remove(key);