-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPersona.cs
32 lines (28 loc) · 842 Bytes
/
Persona.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
namespace HospitalSimulator
{
internal class Persona
{
public string Nombre { get; set; }
public string Apellido { get; set; }
public int Edad { get; set; }
public char Sexo { get; set; }
public string DNI { get; set; }
public virtual void MostrarValores()
{
Type tipo = this.GetType();
PropertyInfo[] propiedades = tipo.GetProperties();
foreach (PropertyInfo propiedad in propiedades)
{
string nombre = propiedad.Name;
object valor = propiedad.GetValue(this);
Console.WriteLine($"{nombre}: {valor}");
}
}
}
}