如下的代码是关于C#通过foreach语句遍历arraylist演示的代码。
创新互联建站专注于企业网络营销推广、网站重做改版、上蔡网站定制设计、自适应品牌网站建设、html5、商城开发、集团公司官网建设、外贸网站制作、高端网站制作、响应式网页设计等建站业务,价格优惠性价比高,为上蔡等各大城市提供网站开发制作服务。
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);
}
}
}
}