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