fork download
  1. using System;
  2.  
  3. class ImplicacionesArgumentosPorReferencia
  4. {
  5. static int x;
  6.  
  7. static void MetodoPrueba(out int y)
  8. {
  9. Console.WriteLine(x); // Valor de x es 0
  10. y = 1; // y implícitamente hace que mute x
  11. Console.WriteLine(x); // Ahora el valor de x es 1
  12. }
  13.  
  14. static void Main()
  15. {
  16. MetodoPrueba(out x);
  17. }
  18. }
Success #stdin #stdout 0.02s 34752KB
stdin
Standard input is empty
stdout
0
1