Question

Having some invokeMethod that takes in (java.lang.String method_name, Object[] params, Class[] params_classes) How would you invoke some method with signature like void MyMethod()?

Was it helpful?

Solution

Use new Object[0] and new Class[0] to specify empty arrays.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top