在C#中,可以使用循環遍歷ArrayList中的所有對象,然后將每個對象輸出。下面是一個示例:
using System;
using System.Collections;
class Program
{
static void Main(string[] args)
{
ArrayList myList = new ArrayList();
myList.Add("Apple");
myList.Add("Banana");
myList.Add("Orange");
foreach (object obj in myList)
{
Console.WriteLine(obj);
}
}
}
在上述示例中,我們創建了一個ArrayList對象myList
,并向其中添加了三個字符串對象。然后,使用foreach循環遍歷ArrayList中的每個對象,并使用Console.WriteLine()
方法將其輸出到控制臺。