How do I automate the process of getting an instance created and its function executed dynamically?
Thanks
Edit: Need an option to pass parameters too. Thanks
|
How do I automate the process of getting an instance created and its function executed dynamically? Thanks Edit: Need an option to pass parameters too. Thanks
| ||||
|
feedback
|
|
Do you just want to call a parameterless constructor to create the instance? Is the type specified as a string as well, or can you make it a generic method? For example:
or
| |||
|
feedback
|
|
To invoke a constructor, Activator.CreateInstance will do the trick. It has a bunch of overloads to make your life easier. If your constructor is parameterless:
If you need parameters:
To invoke, a method, once you have the Type object you can call For a slightly more detailed sample (paste into a console app and go):
| |||
|
feedback
|
|
Assuming that the method you want to invoke does not take any parameters:
| |||
|
feedback
|
|
I think your problem is little too generic here, I am providing a solution with certain assumptions here. Assumption: you have a typeName (string), methodName (string), and a parameter (of SomeType).
let me know know if my assumptions are wrong. | |||
|
feedback
|