I wrote this code private ArrayList articles = new ArrayList(); and it just won't compile.
Visual Studio is giving me this error:
The type or namespace name 'ArrayList' could not be found (are you missing a using directive or an assembly reference?)
Yet i made sure to import the System.Collections Namespace. I even tried with
System.Collections.ArrayList articles = new ArrayList();
But no success either. Thanks for any help