检索其中一个元素,使用索引比较方便。如果遍历所有元素可以用for循环或者foreach语句来实现。代码如下:
using System;
using System.Collections;
class Program
{
static void Main(string[]args)
{
ArrayList lst = new ArrayList(new string[6]
{
"元素一", "元素二", "元素三", "元素四", "元素五", "元素六"
}
);
for (int i = 0; i < lst.Count; i++) //用for循环遍历所有元素
{
Console.WriteLine(lst[i]);
}
Console.WriteLine("比较两种方法");
foreach (string str in lst) //用foreach循环遍历元素
{
Console.WriteLine(str);
}
}
}