首页上一页 1 下一页尾页 1 条记录 1/1页
请教老师
发表在C#答疑区
2017-06-15
是否精华
是
否
版块置顶:
是
否
我做《c#从入门到精通》一书(第3版)的【例7.24】。
请教老师,我这段程序,为什么可运行,但不出结果。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Collections;
namespace c_7_24
{
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 ss in List)
Console.WriteLine(ss);
Console.ReadLine();
}
}
}
于2017-06-15 10:40:06编辑