Am I missing some reference?
List<Item> _items = new List<Item>();
The type or namespace name 'Item' could not be found (are you missing a using directive or an assembly reference?)
I'm new to using Lists and Delegates and stuff...
Am I missing some reference?
List<Item> _items = new List<Item>();
The type or namespace name 'Item' could not be found (are you missing a using directive or an assembly reference?)
I'm new to using Lists and Delegates and stuff...
If Item is a type that exists in your code / references, right click on it, open the "resolve" menu, and select the "using xx" option to add the correct namespace reference. Also, if Item is a type you're created, ensure it is visible to this class (might need to be scoped as public, if it isn't).
If Item doesn't exist - create it, add a reference to the dll containing it, or replace it with something that exists :)