static | Adapter(IList) : ArrayListCreates a ArrayList that is a wrapper for the specified IList. |
| Add(object) : intAdds the specified object to the end of the current instance. |
| AddRange(ICollection)Adds the elements of the specified ICollection to the end of the current instance. |
| BinarySearch(object) : intSearches the current instance for the specified object. |
| BinarySearch(object, IComparer) : intSearches the current instance for the specified object using the
specified IComparer
implementation. |
| BinarySearch(int, int, object, IComparer) : intSearches the specified range in the current instance
for the specified object using the specified IComparer
implementation. |
| Clear()Sets the elements in the current instance to zero,
false, or null, depending upon the element type. |
| Clone() : objectReturns a object that is a copy of the current instance. |
| Contains(object) : boolDetermines whether the specified object is contained in the current
instance. |
| CopyTo(Array) Copies the elements from the current instance to the specified Array. |
| CopyTo(Array, int) Copies the elements from the current instance to the
specified Array
, starting at the specified index of the array. |
| CopyTo(int, Array, int, int) Copies the specified range of elements from the current instance to the specified Array, starting at the specified index of the array. |
static | FixedSize(ArrayList) : ArrayListReturns a ArrayList
wrapper with a fixed size. |
static | FixedSize(IList) : IListDocumentation for this section has not yet been entered. |
| GetEnumerator() : IEnumeratorReturns a IEnumerator for the current
instance. |
| GetEnumerator(int, int) : IEnumeratorReturns a IEnumerator for the specified section of the
current instance. |
| GetRange(int, int) : ArrayListReturns a ArrayList that represents the specified range of the
current instance. |
| IndexOf(object) : intSearches the current instance, returning the index of
the first occurrence of the specified object.
|
| IndexOf(object, int) : intSearches the current instance, returning the index of
the first occurrence of the specified object
in the specified range. |
| IndexOf(object, int, int) : intSearches the current instance, returning the index of
the first occurrence of the specified object
in the specified range. |
| Insert(int, object)Inserts the specified object into the current
instance
at the specified index. |
| InsertRange(int, ICollection)Inserts the elements of the specified ICollection at the specified
index of the current instance. |
| LastIndexOf(object) : intSearches the current instance, returning the index of
the last occurrence of the specified object.
|
| LastIndexOf(object, int) : intSearches the current instance, returning the index of
the last occurrence of the specified object in
the specified range of the current instance. |
| LastIndexOf(object, int, int) : int Searches the current instance, returning the index of
the last occurrence of the specified object in the specified range. |
static | ReadOnly(ArrayList) : ArrayListReturns a read-only ArrayList
wrapper. |
static | ReadOnly(IList) : IListDocumentation for this section has not yet been entered. |
| Remove(object)Removes the first occurrence of the
specified object from
the current instance. |
| RemoveAt(int)Removes the element at the specified index from the
current instance. |
| RemoveRange(int, int)Removes the specified range of elements from the current instance. |
static | Repeat(object, int) : ArrayListReturns a new ArrayList whose elements are copies of the specified
object. |
| Reverse()Reverses the sequence of the elements in the current
instance. |
| Reverse(int, int)Reverses the sequence of the elements in the specified range of the
current instance. |
| SetRange(int, ICollection)Copies the elements of the specified ICollection to a
range in the current instance. |
| Sort()Sorts the elements of the current instance. |
| Sort(IComparer)Sorts the elements of current instance using the specified IComparer. |
| Sort(int, int, IComparer) Sorts the elements in the specified range of the current instance
using the specified IComparer implementation. |
static | Synchronized(ArrayList) : ArrayListReturns a ArrayList wrapper around the specified ArrayList
that is synchronized (thread-safe). |
static | Synchronized(IList) : IListDocumentation for this section has not yet been entered. |
| ToArray() : object[]Copies the elements of the current instance
to a new object array. |
| ToArray(Type) : ArrayCopies the elements of the current instance to a new
array
of the specified Type. |
| TrimToSize()Sets the ArrayList.Capacity of the current instance to
the ArrayList.Count of
the current instance. |