示例#1
0
        public override string PrintExclusive()
        {
            var mayorPuntaje = Evaluaciones?.OrderByDescending(x => x.Nota).FirstOrDefault();

            return($"Nombre: {Nombre}, Mejor Nota: {Math.Round(mayorPuntaje.Nota, 2)}");
        }