次のように、外部メソッドを実行するクラスが必要です。
class CrazyClass
{
//other stuff
public AnyReturnType Execute(AnyKindOfMethod Method, object[] ParametersForMethod)
{
//more stuff
return Method(ParametersForMethod) //or something like that
}
}
これは可能ですか?メソッド署名を受け取るデリゲートはありますか?