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