Getting a return value from a methodInfo.invoke

29,058

When I read this you get the result of the method back from the Invoke-call. It is returned as an object so you need to cast it to a specific type.

var returnValue = (int) methodInfo.Invoke(this, Parameters);
Share:
29,058

Related videos on Youtube

rationalboss
Author by

rationalboss

There is nothing to see here, really.

Updated on July 09, 2022

Comments

  • rationalboss
    rationalboss almost 2 years

    How do I get a return value (int) from a methodInfo.invoke?

    What makes it difficult for me is the fact that I use a string variable to call the method.

    Check the example below:

    if (Convert.ToBoolean(getParameterFromXML("issue", k, 1)) == true)
    {
        m = k + 1;
    
        MethodInfo methodInfo = typeof(frmDetails).GetMethod("Issue" + m);
        methodInfo.Invoke(this, Parameters);
    
    }
    

    What can I do? Any help would be appreciated.