Advertisement
wingman007

OOP2016FullTimeInheritanceAthlete

Apr 19th, 2016
247
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.93 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 World3a3b
  8. {
  9.     class Athlete : Person
  10.     {
  11.         private string sport;
  12.  
  13.         public string Sport
  14.         {
  15.             get { return sport; }
  16.             set { sport = value; }
  17.         }
  18.  
  19.         public Athlete(string name, int age, string sport)
  20.             :base(name, age)
  21.         {
  22.             this.sport = sport;
  23.         }
  24.  
  25.         public override void IntroduceYourSelf()
  26.         {
  27.             Console.WriteLine("---------------- Athlete --------------");
  28.             base.IntroduceYourSelf();
  29.             Console.WriteLine("Sport = {0}", sport);
  30.             Console.WriteLine("----------------- End -------------------");
  31.         }
  32.  
  33.         public override string ToString() // new
  34.         {
  35.             return base.ToString() + " Sport = " + sport;
  36.         }
  37.  
  38.     }
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement