メソッドシグネチャがわかっている場合は、次のように実行できます。
を取り込んで:int
を返すメソッドの例を使用します。string
var functionList = new List<Func<int, string>>();
functionlist.Add(SomeMethod)
functionlist[0](12345); //call the function
//Assuming you had this:
public string SomeMethod(int val) { ...