コード例 #1
0
ファイル: Alumno.cs プロジェクト: AABrizuela/Laboratorio_II
 public override string ToString()
 {
     return(Alumno.Mostrar(this));
 }
コード例 #2
0
 public string Mostrar()
 {
     return(Alumno.Mostrar(this) + " " + this.nota);
 }
コード例 #3
0
 public string Mostrar()
 {
     return(Alumno.Mostrar(this) + "Nota: " + this.Nota.ToString());
 }