public class TestClass 

int iVar = 100; 

private void MyMethod3(int iVar) 

iVar = 45; 


private void MyMethod2() 

int iVar = 44; 


private void MyMethod() 

iVar = 43; 


private void TestScope() 

iVar = 0; 
MyMethod(); 
MyMethod2(); 
MyMethod3(iVar); 

Console.Write(iVar.ToString()); 

}

Qual'è il risultato dell'esecuzione del metodo TestScope?

A. 45

B. 100

C. 0

D. 43

E. 44

powered by IMHO