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