Tuesday 16 February 2021

MVC - Fix Error - The type or namespace name 'ArrayList' could not be found

Watch this example on YouTube

 

 

 

The type or namespace name 'ArrayList' could not be found (are you missing a using directive or an assembly reference?)  


to fix it replace

  ArrayList x = new ArrayList();

With

     System.Collections.ArrayList x = new System.Collections.ArrayList();

No comments:

Post a Comment