I have the function below. I just want to understand who X is and what values it is reaching in the course of the function. I could not get the debug. They do not have to say exact, between values literally, but like it being aringido. I'm studying and I want to understand all of this.
public int qualquerCoisa(int tamanho)
{
Func<int, int> calcFib = null;
calcFib = x => (x - 1 + x - 2);
return calcFib(tamanho);
}