Hello I have the following issue
I have the following function signature :
public void doSomething(Object arg);
I call this function with the following code segment :
doSomething(new Object[] {this,"aString"});
In the doSomething method implementation how can I read the data (Class Name and String) that I sent when I called it ?
Object[](as you mentioned in one of your comments) change the method signature to `public void doSomething(Object[] arg).