我希望能夠用另一種方法指定方法。將方法傳遞給另一個方法
像
public class Binder
{
public void Bind(whatShouldIWriteHere?)
{
// do stuff with the MethodInfo
}
}
,這樣我可以做一些事情:
public class A
{
public void DoIt(string tmp)
{
}
}
var binder = new Binder()
binder.Bind<A>(x => x.DoIt);
相反的:
var method = typeof(A).GetMethod("DoIt");
binder.Bind(method);
這可能嗎? :)
你要不要的MethodInfo或委託? – SLaks
我想要一個方法信息。但不必使用字符串。 – jgauffin