如下的代碼是關(guān)于C#通過foreach語句遍歷arraylist演示的代碼。
創(chuàng)新互聯(lián)建站專注于企業(yè)網(wǎng)絡(luò)營銷推廣、網(wǎng)站重做改版、上蔡網(wǎng)站定制設(shè)計、自適應(yīng)品牌網(wǎng)站建設(shè)、html5、商城開發(fā)、集團(tuán)公司官網(wǎng)建設(shè)、外貿(mào)網(wǎng)站制作、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁設(shè)計等建站業(yè)務(wù),價格優(yōu)惠性價比高,為上蔡等各大城市提供網(wǎng)站開發(fā)制作服務(wù)。
using System;
using System.Collections;
namespace Client.Chapter_4___Program_Control
{
public class ForEaches
{
static void Main(string[] args)
{
ArrayList a = new ArrayList(10);
foreach (int x in a)
{
Console.WriteLine(x);
}
}
}
}