How to fix - The type or namespace name 'List' could not be found - error in ASP.NET?
"The type or namespace name 'List' could not be found (are you missing a using directive or an assembly reference?)" error means you just missed to add appropriate namespace. To fix this issue you just add Generic Collections namespace in your page top.
using System.Collections.Generic;
"The type or namespace name 'List' could not be found (are you missing a using directive or an assembly reference?)" error means you just missed to add appropriate namespace. To fix this issue you just add Generic Collections namespace in your page top.
using System.Collections.Generic;
0 comments:
Post a Comment
Share your thoughts here...