c# arraylist怎樣進(jìn)行遍歷操作

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

在C#中,遍歷ArrayList的方法有很多種。以下是一些常見的方法:

  1. 使用for循環(huán)遍歷:
ArrayList myArrayList = new ArrayList();
// 添加元素到ArrayList
myArrayList.Add("Apple");
myArrayList.Add("Banana");
myArrayList.Add("Cherry");

for (int i = 0; i < myArrayList.Count; i++)
{
    Console.WriteLine(myArrayList[i]);
}
  1. 使用foreach循環(huán)遍歷:
ArrayList myArrayList = new ArrayList();
// 添加元素到ArrayList
myArrayList.Add("Apple");
myArrayList.Add("Banana");
myArrayList.Add("Cherry");

foreach (object item in myArrayList)
{
    Console.WriteLine(item);
}
  1. 使用迭代器遍歷:
ArrayList myArrayList = new ArrayList();
// 添加元素到ArrayList
myArrayList.Add("Apple");
myArrayList.Add("Banana");
myArrayList.Add("Cherry");

IEnumerator iterator = myArrayList.GetEnumerator();
while (iterator.MoveNext())
{
    Console.WriteLine(iterator.Current);
}

以上三種方法都可以實(shí)現(xiàn)遍歷ArrayList的目的,你可以根據(jù)自己的需求和喜好選擇合適的方法。

0