2 writes to _Hashtable
System (2)
sys\system\configuration\SettingsPropertyCollection.cs (2)
31
_Hashtable
= new Hashtable(10, StringComparer.CurrentCultureIgnoreCase);
152
_Hashtable
= (Hashtable)h.Clone();
11 references to _Hashtable
System (11)
sys\system\configuration\SettingsPropertyCollection.cs (11)
42
_Hashtable
.Add(property.Name, property);
47
_Hashtable
.Remove(property.Name);
58
SettingsProperty toRemove = (SettingsProperty)
_Hashtable
[name];
62
_Hashtable
.Remove(name);
67
_Hashtable
.Add(name, toRemove);
78
return
_Hashtable
[name] as SettingsProperty;
86
return
_Hashtable
.Values.GetEnumerator();
93
return new SettingsPropertyCollection(
_Hashtable
);
111
_Hashtable
.Clear();
139
public int Count { get { return
_Hashtable
.Count; } }
145
_Hashtable
.Values.CopyTo(array, index);