wingman007

OOPPrinciplesStatic1bAthlete

Mar 19th, 2016
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.83 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 World1b
  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.         }
  26.  
  27.         // public new void IntroduceYourSelf()
  28.         public override void IntroduceYourSelf()
  29.         {
  30.             // onlyRead = 2.71 * age;
  31.             Console.WriteLine("I am an athlete! ");
  32.             base.IntroduceYourSelf();
  33.             Console.WriteLine("My Sport = {0}", sport);
  34.         }
  35.  
  36.     }
  37. }
Add Comment
Please, Sign In to add comment