When the C# compiler interprets a method invocation it must use (static) argument types to determine which overload is actually being invoked. I want to be able to do this programmatically.
If I have the name of a method (a string
), the type that declares it (an instance of System.Type
), and a list of argument types I want to be able to call a standard library function and get back a MethodInfo
object representing the method the C# compiler would choose to invoke.
For instance if I have
class MyClass {
public void myFunc(BaseClass bc) {};
public void myFunc(DerivedClass dc) {};
}
Then I want something like this fictional function GetOverloadedMethod
on System.Type
MethodInfo methodToInvoke
= typeof(MyClass).GetOverloadedMethod("myFunc", new System.Type[] {typeof(BaseClass)});
In this case methodToInvoke
should be public void myFunc(BaseClass bc)
.
NOTE: Neither of the methods GetMethod
and GetMethods
will serve my purpose. Neither of them do any overload resolution. In the case of GetMethod
it only returns exact matches. If you give it more derived arguments it will simply return nothing. Or you might be lucky enough to get an ambiguity exception which provides no useful information.
Aucun commentaire:
Enregistrer un commentaire