ArrayList Methods
Assembly: mscorlib (in mscorlib.dll)
| Name | Description | |
|---|---|---|
![]() ![]() | Adapter(IList^) | |
![]() | Add(Object^) | Adds an object to the end of the ArrayList. |
![]() | AddRange(ICollection^) | Adds the elements of an ICollection to the end of the ArrayList. |
![]() | BinarySearch(Int32, Int32, Object^, IComparer^) | Searches a range of elements in the sorted ArrayList for an element using the specified comparer and returns the zero-based index of the element. |
![]() | BinarySearch(Object^) | Searches the entire sorted ArrayList for an element using the default comparer and returns the zero-based index of the element. |
![]() | BinarySearch(Object^, IComparer^) | Searches the entire sorted ArrayList for an element using the specified comparer and returns the zero-based index of the element. |
![]() | Clear() | Removes all elements from the ArrayList. |
![]() | Clone() | Creates a shallow copy of the ArrayList. |
![]() | Contains(Object^) | Determines whether an element is in the ArrayList. |
![]() | CopyTo(Array^) | |
![]() | CopyTo(Array^, Int32) | |
![]() | CopyTo(Int32, Array^, Int32, Int32) | |
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | Finalize() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) |
![]() ![]() | FixedSize(ArrayList^) | Returns an ArrayList wrapper with a fixed size. |
![]() ![]() | FixedSize(IList^) | Returns an IList wrapper with a fixed size. |
![]() | GetEnumerator() | Returns an enumerator for the entire ArrayList. |
![]() | GetEnumerator(Int32, Int32) | Returns an enumerator for a range of elements in the ArrayList. |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetRange(Int32, Int32) | |
![]() | GetType() | |
![]() | IndexOf(Object^) | |
![]() | IndexOf(Object^, Int32) | |
![]() | IndexOf(Object^, Int32, Int32) | |
![]() | Insert(Int32, Object^) | Inserts an element into the ArrayList at the specified index. |
![]() | InsertRange(Int32, ICollection^) | Inserts the elements of a collection into the ArrayList at the specified index. |
![]() | LastIndexOf(Object^) | |
![]() | LastIndexOf(Object^, Int32) | |
![]() | LastIndexOf(Object^, Int32, Int32) | |
![]() | MemberwiseClone() | |
![]() ![]() | ReadOnly(ArrayList^) | Returns a read-only ArrayList wrapper. |
![]() ![]() | ReadOnly(IList^) | Returns a read-only IList wrapper. |
![]() | Remove(Object^) | Removes the first occurrence of a specific object from the ArrayList. |
![]() | RemoveAt(Int32) | Removes the element at the specified index of the ArrayList. |
![]() | RemoveRange(Int32, Int32) | Removes a range of elements from the ArrayList. |
![]() ![]() | Repeat(Object^, Int32) | Returns an ArrayList whose elements are copies of the specified value. |
![]() | Reverse() | Reverses the order of the elements in the entire ArrayList. |
![]() | Reverse(Int32, Int32) | Reverses the order of the elements in the specified range. |
![]() | SetRange(Int32, ICollection^) | Copies the elements of a collection over a range of elements in the ArrayList. |
![]() | Sort() | Sorts the elements in the entire ArrayList. |
![]() | Sort(IComparer^) | Sorts the elements in the entire ArrayList using the specified comparer. |
![]() | Sort(Int32, Int32, IComparer^) | Sorts the elements in a range of elements in ArrayList using the specified comparer. |
![]() ![]() | Synchronized(ArrayList^) | Returns an ArrayList wrapper that is synchronized (thread safe). |
![]() ![]() | Synchronized(IList^) | Returns an IList wrapper that is synchronized (thread safe). |
![]() | ToArray() | |
![]() | ToArray(Type^) | Copies the elements of the ArrayList to a new array of the specified element type. |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
![]() | TrimToSize() | Sets the capacity to the actual number of elements in the ArrayList. |
| Name | Description | |
|---|---|---|
![]() | AsParallel() | Overloaded. Enables parallelization of a query.(Defined by ParallelEnumerable.) |
![]() | AsQueryable() | Overloaded. Converts an IEnumerable to an IQueryable.(Defined by Queryable.) |
![]() | Cast<TResult>() | Casts the elements of an IEnumerable to the specified type.(Defined by Enumerable.) |
![]() | OfType<TResult>() | Filters the elements of an IEnumerable based on a specified type.(Defined by Enumerable.) |


