Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace Articulos.Preguntas.P0420
- {
- public abstract class Persona
- {
- private String nombre;
- public String Nombre
- {
- get
- {
- return nombre;
- }
- set
- {
- nombre = value;
- }
- }
- // Declaración del constructor de la clase
- // base `Persona`:
- public Persona(string nombrePersona)
- {
- nombre = nombrePersona;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement