Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Expression.Call and "Ambiguous Match Found"

I'm trying to write an expression that will call ToString on a property and assign it's value to a local variable. However, calling ToString on a object instance w/ an overload of ToString, causes an exception of "Ambigous Match Found" to be thrown. Here's an example:

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))

);

How can I call ToString if the instance has overloads for it? Thanks!

like image 334
James Alexander Avatar asked Oct 04 '10 21:10

James Alexander


1 Answers

Replace:

typeof(string).GetMethod("ToString")

With:

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

In other words, get the method named "ToString" that takes zero arguments (empty type array).

like image 129
Kirk Woll Avatar answered Oct 13 '22 01:10

Kirk Woll