您的位置:首页 > 其它

关于IList不能用作集合的问题

2010-03-04 20:47 155 查看
问题:

出错语句:

private IList<IMap> _mapList = null;

错误描述:

The non-generic type 'System.Collections.IList' cannot be used with type arguments

解决:

using System.Collections.Generic;
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: