forum

Home / DeveloperSection / Forums / Dynamically invoke method in c#

Dynamically invoke method in c#

Anonymous User260705-Mar-2013

Hi Everyone!

I want to be able to store function reference and disregard arguments until it actually is used.

Here's what I'd like for it to look like:

StoreType f=MyFunction;
.......
var r=f.Invoke(arg1,arg2,arg3) as ReturnType;
This is kind of like Action and Func, but those are strongly typed, and I want to be able to declare and use this type without precisely knowing how many arguments and of what types the function will take.

How do I do this in c#?

Thanks!


Updated on 05-Mar-2013
I am a content writter !

Can you answer this question?


Answer

1 Answers

Liked By