Advertisement
Fhernd

PruebaMetodos.cs

Nov 10th, 2017
852
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.40 KB | None | 0 0
  1. class PruebaMetodos
  2. {
  3.     static void PruebaMetodoPorValor(int p)
  4.     {
  5.         p = p + 1;              // Incrementa a 1 en una unidad
  6.         Console.WriteLine(p);   // Escribe valor de p en pantalla
  7.     }
  8.  
  9.     static void Main()
  10.     {
  11.         int x = 8;
  12.         PruebaMetodoPorValor(x);        // Se crea un copia de x.
  13.         Console.WriteLine(x);           // El valor de x es 8.
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement