I type
ArrayList memberNames = new ArrayList() { "Jim", "John", "George" };
and Visual Studio tells me "ArrayList" cannot be found so I have to manually go to the top of the file and type
using System.Collections;
Is there a way to get Visual Studio to do this automatically?
In FlashDevelop, for instance, you press CTRL-SHIFT-1 and it automatically generates these missing references, a nice feature.