我在我的网页上进行了设计。我在asp.net中使用了计时器控制。出现错误 如何清除错误如何运行计时器
我的代码
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
}
public interface IScheduledItem
{
void AddEventsInInterval(DateTime Begin,
DateTime End, ArrayList List);
DateTime NextRunTime(DateTime time);
}
错误 他找不到类型或命名空间名称'ArrayList'
答案 0 :(得分:0)
您需要像这样引用正确的命名空间:
using System.Collections.ArrayList;
将此添加到您的文件顶部。
答案 1 :(得分:0)
将对System.Collections的引用添加到项目中,并为System.Collections添加using语句。