forum

home / developersection / forums / dynamically invoke method in c#

Dynamically invoke method in c#

Anonymous User 3015 05-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!


c# c# 
Updated on 05-Mar-2013

I am a content writter !


Message
Can you answer this question?

Answer

1 Answers

Liked By