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)
561
foreach (object? o in
_objects
)
569
int ICollection.Count =>
_objects
.Count;
573
object ICollection.SyncRoot =>
_objects
.SyncRoot;
577
return new OrderedDictionaryEnumerator(
_objects
, IsKeys ? OrderedDictionaryEnumerator.Keys : OrderedDictionaryEnumerator.Values);
588
foreach (object? o in
_objects
)
602
for (int i = 0; i <
_objects
.Count; i++)
606
object entryKey = ((DictionaryEntry)
_objects
[i]!).Key;
619
else if (object.Equals(((DictionaryEntry)
_objects
[i]!).Value, value))
635
DictionaryEntry entry = (DictionaryEntry)
_objects
[index]!;