类中的组件列表组件、类中、列表

2023-09-03 03:47:48 作者:╰’当我听到这首歌°

我有一个DLL组件,其中有各种类别。每个班大约有50-100成员和4-5的功能。如何创建的所有类,并使用VB.NET程序各自成员名单?

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 respective members using a VB.NET program?

我需要显示给用户使用特定的类执行操作

I need to show to the user for performing an operation using a particular class.

推荐答案

见的 System.Reflection.Assembly.GetTypes()并   System.Type.GetMembers()

- larsw

--larsw