wingman007

OOP2016FullTime3PrinciplesAthlete

May 4th, 2016
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.98 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace World
  8. {
  9.     class Athlete : Person
  10.     {
  11.         // public string Sport { get; set; }
  12.  
  13.         private string sport;
  14.  
  15.         public string Sport
  16.         {
  17.             get { return sport; }
  18.             set { sport = value;  }
  19.         }
  20.  
  21.         public Athlete(string name, int age, string sport)
  22.             :base(name, age)
  23.         {
  24.             this.sport = sport;
  25.             // Sport = sport;
  26.         }
  27.  
  28.         public override void IntroduceYourSelf()
  29.         {
  30.             Console.WriteLine("--------------Athlete----------------");
  31.             base.IntroduceYourSelf();
  32.             Console.WriteLine("Sport = {0}", sport);
  33.             Console.WriteLine("-----------End-------------------");
  34.         }
  35.  
  36.         public override string ToString()
  37.         {
  38.             return base.ToString() + " Sport = " + sport;
  39.         }
  40.     }
  41. }
Add Comment
Please, Sign In to add comment