1 write to _table
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Collections\Hashtable.cs (1)
1255
_table
= table;
28 references to _table
System.Private.CoreLib (28)
src\libraries\System.Private.CoreLib\src\System\Collections\Hashtable.cs (28)
1264
public override int Count =>
_table
.Count;
1266
public override bool IsReadOnly =>
_table
.IsReadOnly;
1268
public override bool IsFixedSize =>
_table
.IsFixedSize;
1274
get =>
_table
[key];
1277
lock (
_table
.SyncRoot)
1279
_table
[key] = value;
1284
public override object SyncRoot =>
_table
.SyncRoot;
1288
lock (
_table
.SyncRoot)
1290
_table
.Add(key, value);
1296
lock (
_table
.SyncRoot)
1298
_table
.Clear();
1304
return
_table
.Contains(key);
1311
return
_table
.ContainsKey(key);
1316
lock (
_table
.SyncRoot)
1318
return
_table
.ContainsValue(key);
1324
lock (
_table
.SyncRoot)
1326
_table
.CopyTo(array, arrayIndex);
1332
lock (
_table
.SyncRoot)
1334
return Synchronized((Hashtable)
_table
.Clone());
1340
return
_table
.GetEnumerator();
1345
return
_table
.GetEnumerator();
1352
lock (
_table
.SyncRoot)
1354
return
_table
.Keys;
1363
lock (
_table
.SyncRoot)
1365
return
_table
.Values;
1372
lock (
_table
.SyncRoot)
1374
_table
.Remove(key);
1387
return
_table
.ToDebugViewDictionaryItemArray();