我有一个数组列表
private ArrayList rps = new ArrayList();
现在下面的代码在 2005 年可以正常工作,但在 Visual Studio 2008 中却不行
int min = Convert.ToInt32(rps.Item(0));
int max = Convert.ToInt32(rps.Item(rps.Count - 1));
错误: System.Collections.ArrayList 不包含“Item”的定义,并且找不到接受“System.Collections.ArrayList”类型的第一个参数的扩展方法“Item”(您是否缺少 using 指令或程序集引用?`