Quale tra i seguenti due metodi ricorsivi riuscirà a fare più iterazioni e perché?
void Foo()
{
System.Reflection.MethodBase.GetCurrentMethod().Invoke(this, null);
}
void Bar()
{
Bar();
}
- A. Foo;
- B. Bar;
- C. per Foo non otteniamo StackOverflowException.