Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace cap07.usoienumerator
- {
- public class Persona
- {
- private string nombre;
- private string apellido;
- public Persona(string nombre, string apellido)
- {
- this.nombre = nombre;
- this.apellido = apellido;
- }
- public String Nombre
- {
- get
- {
- return nombre;
- }
- }
- public String Apellido
- {
- get
- {
- return apellido;
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement