I\'ve a DLL assembly, in which there are various classes. Each class has around 50-100 members and 4-5 functions. How can I create a list of all the classes and their respec
See the documentation for System.Reflection.Assembly.GetTypes() and System.Type.GetMembers()
--larsw