The collection of descendants of the base class.

  • Thread starter Alexander Vasilevsky
  • Start date
A

Alexander Vasilevsky

How can I get a list of known types of inherited base?
In other words know what descendants identified.

http://www.alvas.net - Audio tools for C# and VB.Net developers + Christmas
Gift
 
J

Jeff Johnson

How can I get a list of known types of inherited base?
In other words know what descendants identified.

Examine every .EXE and .DLL on the machine and see if the classes contained
within derive from your base. Seriously, the knowledge is one-way: the
derived class knows what its base class is. A base class has no idea what
has been derived from it.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top