Home >Backend Development >C#.Net Tutorial >How to add items to ArrayList in C#?

How to add items to ArrayList in C#?

WBOY
WBOYforward
2023-09-05 09:53:021041browse

如何在 C# 中向 ArrayList 添加项目?

ArrayList is a non-generic collection in C# that can be dynamically resized.

Let us see how to initialize ArrayList in C# -

ArrayList arr= new ArrayList();

Add items to array list -

ArrayList arr1 = new ArrayList();
arr1.Add(30);
arr1.Add(70);

Let us see the complete example of implementing ArrayList in C#. Here we have two array lists. The second array list is appended to the first list.

Example

using System;
using System.Collections;

public class MyClass {
   public static void Main() {
      ArrayList arr1 = new ArrayList();
      arr1.Add(30);
      arr1.Add(70);

      ArrayList arr2 = new ArrayList();
      arr2.Add(200);
      arr2.Add(240);

      arr1.AddRange(arr2);
      for (int i = 0; i < arr1.Count; i++)
      Console.WriteLine(arr1[i]);
   }
}

The above is the detailed content of How to add items to ArrayList in C#?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete