求大神求救:未能找到类型或命名空间名称“ArrayList”(是否缺少 using 指令或程序集引用?)

usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;namespa... using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication10

{
public class NameListEventArgs : EventArgs
{
public string Name { get; set; }
public int Count { get; set; }
public NameListEventArgs(string name, int count)
{
Name = name;
Count = count;
}
public delegate void NameListEventHandler(object source, NameListEventArgs args);
public class NameList
{
ArrayList list;
public event NameListEventHandler nameListEvent;
public NameList()
{
list = new ArrayList();
}
public void Add(string Name)
{
list.Add(Name);
if (nameListEvent != null)
{
nameListEvent(this, new NameListEventArgs(Name, list.Count));
}
}
}
这个是接下来的代码,不知道什么总是报错,我照着书里打的
展开
 我来答
学派
2014-05-25 · TA获得超过446个赞
知道小有建树答主
回答量:465
采纳率:100%
帮助的人:258万
展开全部
using System.Collection;
更多追问追答
追问
这样改了还是不行
追答
using System.Collections;

少打了一个s
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式