This is sister question to this one
If I have an instance of
System.Reflection.Assembly
and I have the following model:
class Person {}
class Student : Person {}
class Freshman : Student {}
class Employee : Person {}
class PersonList : ArrayList {}
class StudentList : PersonList {}
How can I enumerate the assembly's types to get a reference to Employee, Freshman, and StudentList?
I'd like to be able to enumerate all the bottom types for any given assembly like the example above.
Thanks for your time :)