Reputation: 5076
I have a C# class X which inherits from class Y. Class X should be Com-Visible (should be used in an old Vb6 application). It is neccessary to use some Types of class Y in the VB6 application. How can I make them also COM-visible (without changing class Y) ?
Upvotes: 1
Views: 125
Reputation: 14697
If you can't change class Y, then I'd create new COM-visible wrappers that expose the data and types from class Y.
Upvotes: 1