Advertisement
Guest User

Untitled

a guest
Dec 18th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. class persona
  2. {
  3. protected string nombre;
  4.  
  5. public void SetNombre(string nuevoNombre)
  6. {
  7. nombre = nuevoNombre;
  8. }
  9.  
  10. public void Saludar()
  11. {
  12. Console.WriteLine("Hola soy {0}", nombre);
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement