Advertisement
Fhernd

ImplicacionesArgumentosPorReferencia.cs

Nov 10th, 2017
858
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.37 KB | None | 0 0
  1. class ImplicacionesArgumentosPorReferencia
  2. {
  3.     static int x;
  4.  
  5.     static void MetodoPrueba(out int y)
  6.     {
  7.         Console.WriteLine(x);   // Valor de x es 0
  8.         y = 1;                  // y implícitamente hace que mute x
  9.         Console.WriteLine(x);   // Ahora el valor de x es 1
  10.     }
  11.    
  12.     static void Main()
  13.     {
  14.         MetodoPrueba(out x);
  15.     }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement