所以我需要在 C# 中使用 ArrayList。我在 MSDN 中查找,他们说我必须创建一个类,添加 System.Collections 并添加
IList, ICollection, IEnumerable,
ICloneable
到班级
class clsExample : IList, ICollection, IEnumerable, ICloneable;
然后我尝试使用我的 Arraylist。所以我输入:
ArrayList myAL = new ArrayList();
但问题是,当我尝试向数组 ( myAL.Add(1, Example);
) 中添加内容时,代码没有找到array (myAL)
并在其中标出错误。我错过了什么吗?代码:
using System;
using System.Collections.Generic;
using System.Collections;
using System.Linq;
using System.Text;
namespace WindowsFormsApplication7
{
[SerializableAttribute]
class clsAL : IList, ICollection, IEnumerable,
ICloneable
{
ArrayList AL = new ArrayList();
}
}