I have an Action and I wonder how could I access the instance that call the method.
Exemple:
this.FindInstance(() => this.InstanceOfAClass.Method());
this.FindInstance(() => this.InstanceOfAClass2.Method());
this.FindInstance(() => this.InstanceOfAClass3.Method());
public void FindInstance(Action action)
{
// The action is this.InstanceOfAClass.Method(); and I want to get the "Instance"
// from "action"
}
Thank you
I think you’re looking for the
Delegate.Targetproperty.EDIT: Okay, now I see what you’re after, and you need an expression tree representing the action. Then you can find the target of the method call as another expression tree, build a LambdaExpression from that, compile and execute it, and see the result:
Note that this is incredibly brittle – but it should work in simple cases.