Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class ImplicacionesArgumentosPorReferencia
- {
- static int x;
- static void MetodoPrueba(out int y)
- {
- Console.WriteLine(x); // Valor de x es 0
- y = 1; // y implícitamente hace que mute x
- Console.WriteLine(x); // Ahora el valor de x es 1
- }
- static void Main()
- {
- MetodoPrueba(out x);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement