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); 58SettingsProperty toRemove = (SettingsProperty)_Hashtable[name]; 62_Hashtable.Remove(name); 67_Hashtable.Add(name, toRemove); 78return _Hashtable[name] as SettingsProperty; 86return _Hashtable.Values.GetEnumerator(); 93return new SettingsPropertyCollection(_Hashtable); 111_Hashtable.Clear(); 139public int Count { get { return _Hashtable.Count; } } 145_Hashtable.Values.CopyTo(array, index);