HI

I have DLLs which have classes, in clases is methods for show forms.
These dlls launches an exe project which is compiled, and few dlls calls another with code:

Dim obj As New dllName.ClassName // via reference in VS
obj.ShowMainForm ( testID, Username ... )


or with create object:

Dim obj As New Object
obj = CreateObject("dllName.ClassName")
obj.ShowMainForm



Is there any way to make one universal dll launcher in vb or C#.
I mean exe application, which loads dll, and shows classes, methods, and I select method from class, and set parammeters like up in example testId, Username......


Any help will be good