如何在 C# 中向 ArrayList 中插入一项?


要向已创建的 ArrayList 中插入一项,请使用 Insert() 方法。

首先,设置元素 -

ArrayList arr = new ArrayList();

arr.Add(45);
arr.Add(78);
arr.Add(33);

现在,假设你需要在第 2 个位置插入一项。为此,请使用 Insert() 方法 -

// inserting element at 2nd position
arr.Insert(1, 90);

让我们看完整的示例 -

示例

 实时演示

using System;
using System.Collections;

namespace Demo {
   public class Program {
      public static void Main(string[] args) {
         ArrayList arr = new ArrayList();

         arr.Add(45);
         arr.Add(78);
         arr.Add(33);
         Console.WriteLine("Count: {0}", arr.Count);
         Console.Write("ArrayList: ");

         foreach(int i in arr) {
            Console.Write(i + " ");
         }

         // inserting element at 2nd position
         arr.Insert(1, 90);
         Console.Write("
ArrayList after inserting a new element: ");          foreach(int i in arr) {             Console.Write(i + " ");          }          Console.WriteLine("
Count: {0}", arr.Count);       }    } }

输出

Count: 3
ArrayList: 45 78 33
ArrayList after inserting a new element: 45 90 78 33
Count: 4

更新于: 2020 年 6 月 22 日

429 次浏览

开启您的 职业生涯

通过完成课程获得认证

开始
广告