Expression.Call和“模糊匹配发现”

时间:2010-10-04 21:16:58

标签: c#-4.0 expression-trees

我正在尝试编写一个表达式,它将在属性上调用ToString并将其值赋给局部变量。但是,在ToString重载的对象实例上调用ToString会导致抛出“Ambigous Match Found”的异常。这是一个例子:

var result = Expression.Variable(typeof(string), "result");
var matchTypeParameter = Expression.Parameter(typeof(MatchType), "matchType");
var targetProperty = Expression.Property(leadParameter, target);

var exp = Expression.Block(
  //Add the local current value variable
  new[] { result },

  //Get the target value
  Expression.Assign(result, Expression.Call(targetProperty, typeof(string).GetMethod("ToString"), null))

);

如果实例有重载,我怎么能调用ToString?谢谢!

1 个答案:

答案 0 :(得分:13)

替换:

typeof(string).GetMethod("ToString")

使用:

typeof(string).GetMethod("ToString", Type.EmptyTypes)

换句话说,获取名为“ToString”的方法,该方法采用零参数(空类型数组)。