2 writes to _objectsArray
System.Collections.Specialized (2)
System\Collections\Specialized\OrderedDictionary.cs (2)
62
_objectsArray
= dictionary._objectsArray;
139
private ArrayList EnsureObjectsArray() =>
_objectsArray
??= new ArrayList(_initialCapacity);
9 references to _objectsArray
System.Collections.Specialized (9)
System\Collections\Specialized\OrderedDictionary.cs (9)
62
_objectsArray = dictionary.
_objectsArray
;
85
if (
_objectsArray
== null)
89
return
_objectsArray
.Count;
164
if (
_objectsArray
== null || index < 0 || index >=
_objectsArray
.Count)
246
_objectsArray
?.Clear();
282
if (
_objectsArray
== null)
286
for (int i = 0; i <
_objectsArray
.Count; i++)
288
object o = ((DictionaryEntry)
_objectsArray
[i]!).Key;