2 writes to _hashtable
System.Configuration.ConfigurationManager (2)
System\Configuration\SettingsPropertyCollection.cs (2)
15_hashtable = new Hashtable(10, StringComparer.CurrentCultureIgnoreCase); 120_hashtable = (Hashtable)h.Clone();
11 references to _hashtable
System.Configuration.ConfigurationManager (11)
System\Configuration\SettingsPropertyCollection.cs (11)
24_hashtable.Add(property.Name, property); 31_hashtable.Remove(property.Name); 40SettingsProperty toRemove = (SettingsProperty)_hashtable[name]; 44_hashtable.Remove(name); 51_hashtable.Add(name, toRemove); 61return _hashtable[name] as SettingsProperty; 67return _hashtable.Values.GetEnumerator(); 72return new SettingsPropertyCollection(_hashtable); 87_hashtable.Clear(); 109public int Count { get { return _hashtable.Count; } } 115_hashtable.Values.CopyTo(array, index);