Adapter(IList)
static
|
Creates an ArrayList wrapper for a specific 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, IComparer)
|
Searches the entire 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.
|
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, Int32)
|
Copies the entire ArrayList to a compatible one-dimensional Array, starting at the specified index of the target array.
|
CopyTo(Array)
|
Copies the entire ArrayList to a compatible one-dimensional Array, starting at the beginning of the target array.
|
CopyTo(Int32, Array, Int32, Int32)
|
Copies a range of elements from the ArrayList to a compatible one-dimensional Array, starting at the specified index of the target array.
|
Equals(Object, Object)
static
|
Determines whether the specified object instances are considered equal.
|
Equals(Object)
|
Determines whether the specified object is equal to the current object.
|
FixedSize(ArrayList)
static
|
Returns an ArrayList wrapper with a fixed size.
|
FixedSize(IList)
static
|
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.
|
GetRange(Int32, Int32)
|
Returns an ArrayList which represents a subset of the elements in the source ArrayList.
|
GetType()
|
Gets the Type of the current instance.
|
IndexOf(Object, Int32, Int32)
|
Searches for the specified Object and returns the zero-based index of the first occurrence within the range of elements in the ArrayList that starts at the specified index and contains the specified number of elements.
|
IndexOf(Object, Int32)
|
Searches for the specified Object and returns the zero-based index of the first occurrence within the range of elements in the ArrayList that extends from the specified index to the last element.
|
IndexOf(Object)
|
Searches for the specified Object and returns the zero-based index of the first occurrence within the entire ArrayList.
|
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, Int32, Int32)
|
Searches for the specified Object and returns the zero-based index of the last occurrence within the range of elements in the ArrayList that contains the specified number of elements and ends at the specified index.
|
LastIndexOf(Object, Int32)
|
Searches for the specified Object and returns the zero-based index of the last occurrence within the range of elements in the ArrayList that extends from the first element to the specified index.
|
LastIndexOf(Object)
|
Searches for the specified Object and returns the zero-based index of the last occurrence within the entire ArrayList.
|
MemberwiseClone()
protected
|
Creates a shallow copy of the current Object.
|
ReadOnly(ArrayList)
static
|
Returns a read-only ArrayList wrapper.
|
ReadOnly(IList)
static
|
Returns a read-only IList wrapper.
|
ReferenceEquals(Object, Object)
static
|
Determines whether the specified Object instances are the same instance.
|
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)
static
|
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)
static
|
Returns an ArrayList wrapper that is synchronized (thread safe).
|
Synchronized(IList)
static
|
Returns an IList wrapper that is synchronized (thread safe).
|
ToArray()
|
Copies the elements of the ArrayList to a new Object array.
|
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.
|
TrimToSize()
|
Sets the capacity to the actual number of elements in the ArrayList.
|