2 writes to _objectsTable
System.Collections.Specialized (2)
System\Collections\Specialized\OrderedDictionary.cs (2)
63
_objectsTable
= dictionary._objectsTable;
141
private Hashtable EnsureObjectsTable() =>
_objectsTable
??= new Hashtable(_initialCapacity, _comparer);
6 references to _objectsTable
System.Collections.Specialized (6)
System\Collections\Specialized\OrderedDictionary.cs (6)
63
_objectsTable = dictionary.
_objectsTable
;
183
if (
_objectsTable
== null)
187
return
_objectsTable
[key];
245
_objectsTable
?.Clear();
264
if (
_objectsTable
== null)
268
return
_objectsTable
.Contains(key);