19 references to objectsArray
System (19)
compmod\system\collections\specialized\ordereddictionary.cs (19)
82return objectsArray.Count; 118return new OrderedDictionaryKeyValueCollection(objectsArray, true); 157return ((DictionaryEntry)objectsArray[index]).Value; 163if (index < 0 || index >= objectsArray.Count) { 166object key = ((DictionaryEntry)objectsArray[index]).Key; 167objectsArray[index] = new DictionaryEntry(key, value); 185objectsArray[IndexOfKey(key)] = new DictionaryEntry(key, value); 198return new OrderedDictionaryKeyValueCollection(objectsArray, false); 210objectsArray.Add(new DictionaryEntry(key, value)); 221objectsArray.Clear(); 246for (int i = 0; i < objectsArray.Count; i++) { 247object o = ((DictionaryEntry)objectsArray[i]).Key; 273objectsArray.Insert(index, new DictionaryEntry(key, value)); 299objectsArray.Add(entry); 315object key = ((DictionaryEntry)objectsArray[index]).Key; 316objectsArray.RemoveAt(index); 337objectsArray.RemoveAt(index); 343return new OrderedDictionaryEnumerator(objectsArray, OrderedDictionaryEnumerator.DictionaryEntry); 350return new OrderedDictionaryEnumerator(objectsArray, OrderedDictionaryEnumerator.DictionaryEntry);