2 writes to _objects
System.Collections.Specialized (2)
System\Collections\Specialized\OrderedDictionary.cs (2)
544_objects = array; 551_objects = array;
9 references to _objects
System.Collections.Specialized (9)
System\Collections\Specialized\OrderedDictionary.cs (9)
561foreach (object? o in _objects) 569int ICollection.Count => _objects.Count; 573object ICollection.SyncRoot => _objects.SyncRoot; 577return new OrderedDictionaryEnumerator(_objects, IsKeys ? OrderedDictionaryEnumerator.Keys : OrderedDictionaryEnumerator.Values); 588foreach (object? o in _objects) 602for (int i = 0; i < _objects.Count; i++) 606object entryKey = ((DictionaryEntry)_objects[i]!).Key; 619else if (object.Equals(((DictionaryEntry)_objects[i]!).Value, value)) 635DictionaryEntry entry = (DictionaryEntry)_objects[index]!;