How would you implement an algorithm to choose the correct method overload, when overriding the following method on DynamicObject?

bool TryInvokeMember(InvokeMemberBinder binder, object[] args, out object result)
link|improve this question

This is a little unclear to me, but The args array will be of different length, different types, or both if the name of the member being invoked is the same. – vcsjones May 1 '11 at 3:36
@vcsjones: just those two aspects, or something more? – GregC May 1 '11 at 3:47
There's a bug with the way out/ref arguments are handled, and its fix did not find its way into SP1. I am second-guessing myself, thinking there's more to the problem than meets the eye. – GregC May 1 '11 at 3:51
feedback

2 Answers

up vote 2 down vote accepted

If this overload issue is due to forwarding to statically implemented methods. A solution could be to just let the dlr do the work for you. Open source Impromptu-Interface has a static method that creates all the dlr binding code, caches appropriately and then invokes it and the dlr binder does overload resolution. example. This example handles named/optional params and inferred generics in the overload resolution, however DynamicObject does not expose explict generics or ref out params in the invocation.

link|improve this answer
feedback

It's not straightforward as you have to take into account things like implicit type conversion and variable length parameters (which must be mapped to arrays).

The MethodCallResolver class in the Zentrum framework provides an example of how to find a matching method.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.