1 write to m_stringDictionary
System (1)
compmod\system\collections\specialized\stringdictionary.cs (1)
202m_stringDictionary = stringDictionary;
16 references to m_stringDictionary
System (16)
compmod\system\collections\specialized\stringdictionary.cs (16)
219return m_stringDictionary.ContainsKey(key); 223m_stringDictionary.Clear(); 228return m_stringDictionary.Count; 245if (!m_stringDictionary.ContainsKey(key)) throw new KeyNotFoundException(); 247return m_stringDictionary[key]; 254m_stringDictionary[key] = value; 262_keys = new ICollectionToGenericCollectionAdapter(m_stringDictionary, KeyOrValue.Key); 272_values = new ICollectionToGenericCollectionAdapter(m_stringDictionary, KeyOrValue.Value); 285if (!m_stringDictionary.ContainsKey(key)) return false; 288m_stringDictionary.Remove(key); 296if (!m_stringDictionary.ContainsKey(key)) { 301value = m_stringDictionary[key]; 306m_stringDictionary.Add(item.Key, item.Value); 324foreach (DictionaryEntry entry in m_stringDictionary) { 346m_stringDictionary.Remove(item.Key); 361foreach (DictionaryEntry dictionaryEntry in m_stringDictionary)