I'm new to C++/CLI and are having a hard time with Lists.
I have a structure
#using namespace System::Collections::Generic
struct myStruct {
unsigned int A ;
int B; };
and i want to create a list with mystructs
List<myStruct> myList;
But that seems not to work, Visual Studio says "myStruct is not a valid generic Argument", but why is that so? And how can i make this structure a "valid generic argument"?
` and `std::list myList;`. Also, a [decent book](http://stackoverflow.com/questions/388242/the-definitive-c-book-guide-and-list) is a good investment.
– molbdnilo May 31 '16 at 08:15