hey everyone! I am using introspection and would like to get a method using
The method I want to get takes a
string array as the parameter type. But I am not sure how to get a Class instance that represents an array so I can use the method call above. Is it even possible? In the past, I have just used getMethods() and found the method by comparing the class names of the parameter types of each method to "[Ljava.lang.string;". But this seems like a huge kludge to me and takes away from the simplicity of the code. Any ideas?