The collection of descendants of the base class.

  • Thread starter Thread starter Alexander Vasilevsky
  • Start date 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
 
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.
 
Back
Top