Lets take an example
public class Sample
{
public int Execute()
{
int i=0;
return i;
}
}
From the above code,Dynamically I want to identify all the available variables in Execute()
method(currently only one variable i.e, i
).Is there any possibility to do this??