Pregunta

SubArray = Key.Ikey;

Ikey being the variable which holds the name of the method.

I tried:

SubArray = Key.(this.IKey);

but the compiler gave the error identifier excpected.

¿Fue útil?

Solución

I think you are interested in reflection. It goes something like:

method = object.getClass().getMethod(methodName, param1.class, param2.class, ..);

So you are calling the method specified by the variable 'methodName' of the object 'object'

You can read more here Reflection

and in this tutorial link

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top