Last Updated : 11 Jul, 2025
ArrayList() constructoris used to initialize a new instance of the ArrayList class which will be empty and will have the default initial capacity.
ArrayListrepresents an ordered collection of an object that can be indexed individually. It is basically an alternative to an array. It also allows dynamic memory allocation, adding, searching and sorting items in the list.
Syntax:public ArrayList ();Important Points:
// C# Program to illustrate how
// to create a ArrayList
using System;
using System.Collections;
class Geeks {
// Main Method
public static void Main(String[] args)
{
// arrlist is the ArrayList object
// ArrayList() is the constructor
// used to initializes a new
// instance of the ArrayList class
ArrayList arrlist = new ArrayList();
// Count property is used to get the
// number of elements in ArrayList
// It will give 0 as no elements
// are present currently
Console.WriteLine(arrlist.Count);
}
}
Example 2: csharp
// C# Program to illustrate how
// to create a ArrayList
using System;
using System.Collections;
class Geeks {
// Main Method
public static void Main(String[] args)
{
// arrlist is the ArrayList object
// ArrayList() is the constructor
// used to initializes a new
// instance of the ArrayList class
ArrayList arrlist = new ArrayList();
Console.Write("Before Add Method: ");
// Count property is used to get the
// number of elements in ArrayList
// It will give 0 as no elements
// are present currently
Console.WriteLine(arrlist.Count);
// Adding the elements
// to the ArrayList
arrlist.Add("This");
arrlist.Add("is");
arrlist.Add("C#");
arrlist.Add("ArrayList");
Console.Write("After Add Method: ");
// Count property is used to get the
// number of elements in arrlist
Console.WriteLine(arrlist.Count);
}
}
Output:
Before Add Method: 0 After Add Method: 4Reference:
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4