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