溫馨提示×

c# arraylist怎樣進行添加元素

c#
小樊
81
2024-11-15 23:44:15
欄目: 編程語言

在C#中,使用ArrayList類來添加元素非常簡單。以下是一些示例:

  1. 添加單個元素:
using System;
using System.Collections;

class Program
{
    static void Main()
    {
        ArrayList myList = new ArrayList(); // 創(chuàng)建一個新的ArrayList實例

        myList.Add("Apple"); // 添加一個字符串元素
        myList.Add(42); // 添加一個整數元素

        Console.WriteLine("ArrayList內容: " + string.Join(", ", myList));
    }
}
  1. 添加多個元素:
using System;
using System.Collections;

class Program
{
    static void Main()
    {
        ArrayList myList = new ArrayList(); // 創(chuàng)建一個新的ArrayList實例

        myList.Add("Apple"); // 添加一個字符串元素
        myList.Add(42); // 添加一個整數元素
        myList.Add(3.14); // 添加一個浮點數元素
        myList.Add(true); // 添加一個布爾值元素

        Console.WriteLine("ArrayList內容: " + string.Join(", ", myList));
    }
}

注意:在上面的示例中,我們使用了string.Join()方法將ArrayList中的元素連接成一個字符串,以便于輸出。

0