2 writes to _table
mscorlib (2)
system\collections\hashtable.cs (2)
1385_table = table; 1389_table = (Hashtable)info.GetValue("ParentTable", typeof(Hashtable));
31 references to _table
mscorlib (31)
system\collections\hashtable.cs (31)
1390if (_table==null) { 1414lock (_table.SyncRoot) { 1415info.AddValue("ParentTable", _table, typeof(Hashtable)); 1420get { return _table.Count; } 1424get { return _table.IsReadOnly; } 1428get { return _table.IsFixedSize; } 1437return _table[key]; 1440lock(_table.SyncRoot) { 1441_table[key] = value; 1447get { return _table.SyncRoot; } 1451lock(_table.SyncRoot) { 1452_table.Add(key, value); 1457lock(_table.SyncRoot) { 1458_table.Clear(); 1463return _table.Contains(key); 1471return _table.ContainsKey(key); 1475lock(_table.SyncRoot) { 1476return _table.ContainsValue(key); 1481lock (_table.SyncRoot) { 1482_table.CopyTo(array, arrayIndex); 1487lock (_table.SyncRoot) { 1488return Hashtable.Synchronized((Hashtable)_table.Clone()); 1493return _table.GetEnumerator(); 1497return _table.GetEnumerator(); 1502lock(_table.SyncRoot) { 1503return _table.Keys; 1510lock(_table.SyncRoot) { 1511return _table.Values; 1517lock(_table.SyncRoot) { 1518_table.Remove(key); 1535return _table.ToKeyValuePairsArray();