Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. using System;
  2.  
  3. namespace Articulos.Preguntas.P0420
  4. {
  5.     public class Estudiante : Persona
  6.     {
  7.         private String carnet;
  8.        
  9.         public String Carnet
  10.         {
  11.             get
  12.             {
  13.                 return carnet;
  14.             }
  15.             set
  16.             {
  17.                 carnet = value;
  18.             }
  19.         }
  20.        
  21.         // Constructor de `Estudiante` que invoca al constructor
  22.         // de la clase base `Persona`:
  23.         public Estudiante (string nombreEstudiante, string carnetEstudiante)
  24.             : base (nombreEstudiante)
  25.         {
  26.             carnet = carnetEstudiante;
  27.         }
  28.        
  29.         public static void Main()
  30.         {
  31.             Estudiante estudiante = new Estudiante("John Learner", "201311620");
  32.            
  33.             Console.WriteLine ("\nNombre del estudiante: {0}", estudiante.Nombre);
  34.             Console.WriteLine ("Carnet del estudiante: {0}\n", estudiante.Carnet);
  35.         }
  36.     }
  37. }