Re: Managed C++



Managed code in C++ actually has always allowed multiple inheritance,
but not for __gc classes. You can still do this with MC++:

class A {};
class B {};

struct C: A, B
{};

.


Loading