What I mean is the following:
The next code (C#):
public void func()
{
int[] arrayOfInt = {1,2,3,4, 10};
int sample = arrayOfInt[3] * arrayOfInt[4] ;
// sample should be 40 now
}
is in the decompiler visible as:
public void func()
{
int[] arrayOfInt;
int sample = arrayOfInt[3] * arrayOfInt[4] ;
}
So the values that are, in the code, stored in the array aren't made readable in the decompiler... Is that always the case!?