I want to retrieve the values sent to a method outside the invocation of the method, using this example
public void myExample(int a, int b) {..}
I could call with :
myExample(10,20);
Outside of the method which contains the invocation for myExample, I want to find what values were sent to it.
↧