首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > C# >

小弟我是一个新手,有个有关问题

2013-03-22 
我是一个新手,有个问题,请教大家 class Program{static void Main(string[] args){ArrayList List new A

我是一个新手,有个问题,请教大家
 class Program
    {
        static void Main(string[] args)
        {
            ArrayList List = new ArrayList(10);
            for(int i =0; i<List.Count;i++)
            {
                List.Add(i);
            }
            foreach (int s in List)
            {
                Console.Write("you input the array is :",s);
            }
            Console.ReadLine();//为什么输出不来呢!!!
        }
    }
}
说的没错

热点排行