Otra forma de retornar los atributos es con StringBuilder
public override string ToString(){
StringBuilder sb = new StringBuilder();
sb.AppendLine("Nombre: "+this.Nombre+"\n");
sb.AppendLine("Pais: "+this.Pais+"\n");
sb.AppendLine("Ciudad: "+this.Ciudad+"\n");
sb.AppendLine("Año: "+this.AñoDeCreación+"\n");
sb.AppendLine("Tipo de Escuela: "+this.TipoEscuelas+"\n");
return sb.ToString();
}
¿Quieres ver más aportes, preguntas y respuestas de la comunidad?