Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class PruebaMetodos
- {
- static void PruebaMetodoPorValor(int p)
- {
- p = p + 1; // Incrementa a 1 en una unidad
- Console.WriteLine(p); // Escribe valor de p en pantalla
- }
- static void Main()
- {
- int x = 8;
- PruebaMetodoPorValor(x); // Se crea un copia de x.
- Console.WriteLine(x); // El valor de x es 8.
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement