A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.geeksforgeeks.org/c-sharp/how-to-create-the-arraylist-in-c-sharp/ below:

How to create the ArrayList in C#

How to create the ArrayList in C#

Last Updated : 11 Jul, 2025

ArrayList() constructor

is used to initialize a new instance of the ArrayList class which will be empty and will have the default initial capacity.

ArrayList

represents 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: Example 1: 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();

        // 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: 4
Reference:

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