C# – ArrayList Class

  • Post author:
  • Post category:C#
  • Post comments:1 Comment
C# - ArrayList Class

C# ArrayList Class represents an ordered collection of an object that can be indexed individually. It is basically an alternative to an array. However, unlike an array, you can add and remove items from a list at a specified position using an index and the array resizes itself automatically. It also allows dynamic memory allocation, adding, searching, and sorting items in the list.

Methods and Properties of C# ArrayList Class

The following table lists some of the commonly used properties of the ArrayList class −

Sr.No.Property & Description
1CapacityGets or sets the number of elements that the ArrayList can contain.
2CountGets the number of elements actually contained in the ArrayList.
3IsFixedSizeGets a value indicating whether the ArrayList has a fixed size.
4IsReadOnlyGets a value indicating whether the ArrayList is read-only.
5ItemGets or sets the element at the specified index.

The following table lists some of the commonly used methods of the ArrayList class −

Sr.No.Method & Description
1public virtual int Add(object value); Adds an object to the end of the ArrayList.
2public virtual void AddRange(ICollection c); Adds the elements of an ICollection to the end of the ArrayList.
3public virtual void Clear(); Removes all elements from the ArrayList.
4public virtual bool Contains(object item); Determines whether an element is in the ArrayList.
5public virtual ArrayList GetRange(int index, int count); Returns an ArrayList which represents a subset of the elements in the source ArrayList.
6public virtual int IndexOf(object); Returns the zero-based index of the first occurrence of a value in the ArrayList or in a portion of it.
7public virtual void Insert(int index, object value); Inserts an element into the ArrayList at the specified index.
8public virtual void InsertRange(int index, ICollection c); Inserts the elements of a collection into the ArrayList at the specified index.
9public virtual void Remove(object obj); Removes the first occurrence of a specific object from the ArrayList.
10public virtual void RemoveAt(int index); Removes the element at the specified index of the ArrayList.
11public virtual void RemoveRange(int index, int count); Removes a range of elements from the ArrayList.
12public virtual void Reverse(); Reverses the order of the elements in the ArrayList.
13public virtual void SetRange(int index, ICollection c); Copies the elements of a collection over a range of elements in the ArrayList.
14public virtual void Sort(); Sorts the elements in the ArrayList.
15public virtual void TrimToSize(); Sets the capacity to the actual number of elements in the ArrayList.

Example

The following example demonstrates the concept −

using System;
using System.Collections;

namespace CollectionApplication {
   class Program {
      static void Main(string[] args) {
         ArrayList al = new ArrayList();
         
         Console.WriteLine("Adding some numbers:");
         al.Add(45);
         al.Add(78);
         al.Add(33);
         al.Add(56);
         al.Add(12);
         al.Add(23);
         al.Add(9);
         
         Console.WriteLine("Capacity: {0} ", al.Capacity);
         Console.WriteLine("Count: {0}", al.Count);
         
         Console.Write("Content: ");
         foreach (int i in al) {
            Console.Write(i + " ");
         }
         
         Console.WriteLine();
         Console.Write("Sorted Content: ");
         al.Sort();
         foreach (int i in al) {
            Console.Write(i + " ");
         }
         Console.WriteLine();
         Console.ReadKey();
      }
   }
}

When the above code is compiled and executed, it produces the following result −

Adding some numbers:
Capacity: 8
Count: 7
Content: 45 78 33 56 12 23 9
Content: 9 12 23 33 45 56 78   

Next Topic – Click Here

This Post Has One Comment

Leave a Reply