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);
40
SettingsProperty toRemove = (SettingsProperty)
_hashtable
[name];
44
_hashtable
.Remove(name);
51
_hashtable
.Add(name, toRemove);
61
return
_hashtable
[name] as SettingsProperty;
67
return
_hashtable
.Values.GetEnumerator();
72
return new SettingsPropertyCollection(
_hashtable
);
87
_hashtable
.Clear();
109
public int Count { get { return
_hashtable
.Count; } }
115
_hashtable
.Values.CopyTo(array, index);