我有一个Action,我想知道如何访问调用该方法的实例。
例:
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"
}
谢谢
答案 0 :(得分:8)
我认为你正在寻找Delegate.Target
财产。
using System;
using System.Linq.Expressions;
class Test
{
static string someValue;
static void Main()
{
someValue = "target value";
DisplayCallTarget(() => someValue.Replace("x", "y"));
}
static void DisplayCallTarget(Expression<Action> action)
{
// TODO: *Lots* of validation
MethodCallExpression call = (MethodCallExpression) action.Body;
LambdaExpression targetOnly = Expression.Lambda(call.Object, null);
Delegate compiled = targetOnly.Compile();
object result = compiled.DynamicInvoke(null);
Console.WriteLine(result);
}
}
请注意,这非常脆弱 - 但它应该在简单的情况下起作用。
答案 1 :(得分:3)
其实我不知道你是否可以这样做。 Delegate
类只包含两个属性:Target
和Method
。访问Target
将不起作用,因为您正在创建一个新的匿名方法,因此该属性将返回调用FindInstance
方法的类。
尝试这样的事情:
FindInstance(this.MyInstance.DoSomething);
然后按如下方式访问Target
属性:
public void FindInstance(Action action)
{
dynamic instance = action.Target;
Console.WriteLine(instance.Property1);
}