4 writes to hashtable
System (4)
compmod\system\collections\specialized\hybriddictionary.cs (4)
62
hashtable
= new Hashtable(initialSize, StringComparer.OrdinalIgnoreCase);
64
hashtable
= new Hashtable(initialSize);
146
hashtable
= newTable;
256
hashtable
= null;
26 references to hashtable
System (26)
compmod\system\collections\specialized\hybriddictionary.cs (26)
83
if (
hashtable
!= null) {
84
return
hashtable
[key];
103
if (
hashtable
!= null) {
104
hashtable
[key] = value;
109
hashtable
[key] = value;
156
if (
hashtable
!= null) {
157
return
hashtable
.Count;
171
if (
hashtable
!= null) {
172
return
hashtable
.Keys;
220
if (
hashtable
!= null) {
221
return
hashtable
.Values;
232
if (
hashtable
!= null) {
233
hashtable
.Add(key, value);
242
hashtable
.Add(key, value);
254
if(
hashtable
!= null) {
255
Hashtable cachedHashtable =
hashtable
;
272
if (
hashtable
!= null) {
273
return
hashtable
.Contains(key);
288
if (
hashtable
!= null) {
289
hashtable
.CopyTo(array, index);
299
if (
hashtable
!= null) {
300
return
hashtable
.GetEnumerator();
312
if (
hashtable
!= null) {
313
return
hashtable
.GetEnumerator();
325
if (
hashtable
!= null) {
326
hashtable
.Remove(key);