fork download
  1. using System;
  2.  
  3. class Pruebaref
  4. {
  5. static void PruebaModificadorRef(ref int p)
  6. {
  7. p = p + 1; // Incrementa p en una unidad
  8. Console.WriteLine(p); // Escribe valor de p en pantalla
  9. }
  10.  
  11. static void Main()
  12. {
  13. int x = 8;
  14. PruebaModificadorRef(ref x); // Usa el valor de x sin copiarlo
  15. Console.WriteLine(x); // x vale 9 en este punto
  16. }
  17. }
Success #stdin #stdout 0.03s 33960KB
stdin
Standard input is empty
stdout
9
9