Tengo una lista desplegable que se completa inspeccionando los métodos de una clase e incluyendo aquellos que coinciden con una firma específica. El problema es tomar el elemento seleccionado de la lista y hacer que el delegado llame a ese método en la clase. El primer método funciona, pero no puedo descifrar parte del segundo.Obtención de un delegado de methodinfo
Por ejemplo,
public delegate void MyDelegate(MyState state);
public static MyDelegate GetMyDelegateFromString(string methodName)
{
switch (methodName)
{
case "CallMethodOne":
return MyFunctionsClass.CallMethodOne;
case "CallMethodTwo":
return MyFunctionsClass.CallMethodTwo;
default:
return MyFunctionsClass.CallMethodOne;
}
}
public static MyDelegate GetMyDelegateFromStringReflection(string methodName)
{
MyDelegate function = MyFunctionsClass.CallMethodOne;
Type inf = typeof(MyFunctionsClass);
foreach (var method in inf.GetMethods())
{
if (method.Name == methodName)
{
//function = method;
//how do I get the function to call?
}
}
return function;
}
¿Cómo llego por las secciones del segundo método funcione? ¿Cómo echo el MethodInfo
en el delegado?
Gracias!
Editar: Aquí está la solución de trabajo.
public static MyDelegate GetMyDelegateFromStringReflection(string methodName)
{
MyDelegate function = MyFunctionsClass.CallMethodOne;
Type inf = typeof(MyFunctionsClass);
foreach (var method in inf.GetMethods())
{
if (method.Name == methodName)
{
function = (MyDelegate)Delegate.CreateDelegate(typeof(MyDelegate), method);
}
}
return function;
}
Gracias nkohari, funcionó exactamente como yo lo necesitaba. –