91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

c# arraylist怎樣進行遍歷操作

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

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

  1. 使用for循環遍歷:
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循環遍歷:
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);
}

以上三種方法都可以實現遍歷ArrayList的目的,你可以根據自己的需求和喜好選擇合適的方法。

0
辽宁省| 墨江| 乐安县| 长海县| 拉孜县| 新绛县| 含山县| 宁南县| 九龙县| 黔江区| 峨眉山市| 稻城县| 临湘市| 基隆市| 阿拉善盟| 保靖县| 衡山县| 肇庆市| 上虞市| 班戈县| 客服| 安陆市| 奎屯市| 连云港市| 澳门| 北宁市| 云南省| 博客| 东乡| 太仆寺旗| 洛宁县| 习水县| 佛冈县| 永定县| 开平市| 泸溪县| 阳泉市| 曲靖市| 蚌埠市| 河津市| 中牟县|