I am wondering if it is possible to load a .net DLL at runtime, view the methods available and execute one at runtime.
If this is possible could you point me in the right direction
|
I am wondering if it is possible to load a .net DLL at runtime, view the methods available and execute one at runtime. If this is possible could you point me in the right direction |
||||
|
|
|
Generally, you use System.Reflection classes to do this task. Specifically, you'd load the DLL via Assembly.Load (or Assembly.LoadFrom) and then call Assembly.GetTypes and then for each type call Type.GetMethods. When you have a MethodInfo, you can call MethodInfo.Invoke on it. |
|||
|
|
|
You need to use Reflection. You can call Beware that reflection can be quite slow. |
|||||||||
|
|
Yes, this is possible, you just start with loading your dll:
And then to invoke a method inside your dll you'll have to use reflection.
where Once you got your instance, you can invoke your method like this:
|
|||
|
|
|
I found this at reflection eamples
|
||||
|
|