If I try to use a data type from System.Collections, I get a syntax error.
var data = new ArrayList();
=>
The type or namespace name 'ArrayList' could not be found (are you missing a using directive or an assembly reference?)
Yet when I go to “Usings and References” it doesn’t show up there for me to choose. I see System, System.Configuration, System.Core, System.Data… but no Collections. But if I specify the whole path, e.g.
var data = new System.Collections.ArrayList();
Then the syntax error goes away. But I would like to not have to be so verbose.
