C# Tutorial ArrayList
Add
- Add an object to the end of the ArrayList in CSharp
- Add the elements of an ICollection to the end of the ArrayList in CSharp
Basic
- Check if the ArrayList has a fixed size in CSharp
- Check if the ArrayList is read-only in CSharp
- Check whether an element is contained in the ArrayList in CSharp
- Compare two ArrayList for equal in CSharp
- Get an enumerator from a range of elements in the ArrayList in CSharp
- Get an enumerator from in entire ArrayList in CSharp
- Get or set the element at the specified index in CSharp
- Get or set the number of elements that the ArrayList can contain in CSharp
- Get sub range from an ArrayList in CSharp
- Get the number of elements actually contained in the ArrayList in CSharp
- Lock a ArrayList in CSharp
- Return a read-only ArrayList wrapper in CSharp
- Return an ArrayList whose elements are copies of the specified value in CSharp
- Return an ArrayList wrapper that is synchronized (thread safe) in CSharp
- Set the capacity to the actual number of elements in the ArrayList in CSharp
- Synchronize an ArrayList in CSharp
- Use an enumerator to loop through an ArrayList in CSharp
- Use the Item property explicitly to assign values to items in the list in CSharp
Convert
- Convert ArrayList to Array in CSharp
- Convert ArrayList to Array of the specified element type in CSharp
Copy
- Copy ArrayList to Array, starting at specific index of the target array in CSharp
- Copy ArrayList to Array, starting at the beginning of the target array in CSharp
- Copy a collection to a range of elements in the ArrayList in CSharp
- Copy sub ArrayList to Array, starting at specific index of the target array in CSharp
- Create a shallow copy(clone) of the ArrayList in CSharp
Create
- Create a fix-sized ArrayList from an existing ArrayList in CSharp
- Create an ArrayList from another ArrayList in CSharp
- Create an ArrayList that is empty and has the default initial capacity in CSharp
- Create an ArrayList that is empty and has the specified initial capacity in CSharp
Insert
- Insert an element into the ArrayList at the specified index in CSharp
- Insert the elements of a collection into the ArrayList at the specified index in CSharp
Remove
- Remove a range of elements from the ArrayList in CSharp
- Remove all elements from the ArrayList in CSharp
- Remove the element at the specified index of the ArrayList in CSharp
- Remove the first occurrence of a specific object from the ArrayList in CSharp
Reverse
- Reverse the order of the elements in the entire ArrayList in CSharp
- Reverses a sub range ArrayList in CSharp
Search
- Search ArrayList with custom comparer and returns the zero-based index of the element in CSharp
- Search Object and returns index of the last occurrence within the ArrayList in CSharp
- Search Object and returns index of the last occurrence within the offset of the ArrayList in CSharp
- Search Object and returns index of the last occurrence within the sub range in the ArrayList in CSharp
- Search Object in an ArrayList with offset in CSharp
- Search Object within a sub range from a ArrayList in CSharp
- Search a range of elements in the sorted ArrayList with custom comparer and returns the zero-based index of the element in CSharp
- Search an Object and returns the zero-based index of the first occurrence within the entire ArrayList in CSharp
- Search sorted ArrayList using the specified comparer and returns the zero-based index of the element in CSharp
Sort
- Sort a list of customized objects in CSharp
- Sort the elements in a range of elements in ArrayList using the specified comparer in CSharp
- Sort the elements in the ArrayList using the specified comparer in CSharp
- Sort the elements in the entire ArrayList in CSharp