在我使用Visual Studio 11 Express Beta编写的
Windows 8应用程序中,我无法使用ArrayList.这是我的代码:
using System.Collections; ArrayList al = new ArrayList();
编译错误:
The type or namespace name ‘ArrayList’ could not be found (are you missing a using directive or an assembly reference?)
这是新的东西吗?我喜欢ArrayLists 原文链接:https://www.f2er.com/csharp/98723.html