I have the following interface which I\'m trying to make COM-visible. When I try to generate the type-library it doesn\'t like the fact that my implementation class derives
Generic types and types that derive from a generic type cannot be exported. Set ComVisible(false) on your MyClass type. You'll need to either create a non-generic class implementation or use the interface only.