7 [__DynamicallyInvokable]
16 [__DynamicallyInvokable]
17 object this[
int index]
19 [__DynamicallyInvokable]
21 [__DynamicallyInvokable]
28 [__DynamicallyInvokable]
31 [__DynamicallyInvokable]
38 [__DynamicallyInvokable]
41 [__DynamicallyInvokable]
49 [__DynamicallyInvokable]
50 int Add(
object value);
56 [__DynamicallyInvokable]
61 [__DynamicallyInvokable]
67 [__DynamicallyInvokable]
78 [__DynamicallyInvokable]
79 void Insert(
int index,
object value);
84 [__DynamicallyInvokable]
92 [__DynamicallyInvokable]
Represents a non-generic collection of objects that can be individually accessed by index.
void RemoveAt(int index)
Removes the T:System.Collections.IList item at the specified index.
void Insert(int index, object value)
Inserts an item to the T:System.Collections.IList at the specified index.
bool IsReadOnly
Gets a value indicating whether the T:System.Collections.IList is read-only.
void Clear()
Removes all items from the T:System.Collections.IList.
int IndexOf(object value)
Determines the index of a specific item in the T:System.Collections.IList.
bool IsFixedSize
Gets a value indicating whether the T:System.Collections.IList has a fixed size.
Exposes an enumerator, which supports a simple iteration over a non-generic collection....
int Add(object value)
Adds an item to the T:System.Collections.IList.
void Remove(object value)
Removes the first occurrence of a specific object from the T:System.Collections.IList.
bool Contains(object value)
Determines whether the T:System.Collections.IList contains a specific value.
Defines size, enumerators, and synchronization methods for all nongeneric collections.