Student:
public class Aluno{ public int Id { get; set; } public string Nome { get; set; } public string Sobrenome { get; set; } }
Now I need to access the student's First and Last Name through a string, how can I do this?
EX.:
string opcaoA = "Nome"; var resultado = Aluno + ".opcaoA "; //Resultado = "João";