我希望能够在另一种方法中指定一种方法。
就像是
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);
那可能吗?:)