4 writes to hashtable
System.Collections.Specialized (4)
System\Collections\Specialized\HybridDictionary.cs (4)
53hashtable = new Hashtable(initialSize, StringComparer.OrdinalIgnoreCase); 57hashtable = new Hashtable(initialSize); 140hashtable = newTable; 257hashtable = null;
28 references to hashtable
System.Collections.Specialized (28)
System\Collections\Specialized\HybridDictionary.cs (28)
71if (hashtable != null) 73return hashtable[key]; 92if (hashtable != null) 94hashtable[key] = value; 101Debug.Assert(hashtable != null); 102hashtable[key] = value; 149if (hashtable != null) 151return hashtable.Count; 168if (hashtable != null) 170return hashtable.Keys; 215if (hashtable != null) 217return hashtable.Values; 228if (hashtable != null) 230hashtable.Add(key, value); 242Debug.Assert(hashtable != null); 243hashtable.Add(key, value); 254if (hashtable != null) 256Hashtable cachedHashtable = hashtable; 272if (hashtable != null) 274return hashtable.Contains(key); 289if (hashtable != null) 291hashtable.CopyTo(array, index); 301if (hashtable != null) 303return hashtable.GetEnumerator(); 312if (hashtable != null) 314return hashtable.GetEnumerator(); 323if (hashtable != null) 325hashtable.Remove(key);