Advertisement
wingman007

C#_OOP_433_1a_Athlete.cs

Mar 21st, 2014
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.66 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace OOP6
  7. {
  8.     class Athlete : Human
  9.     {
  10.         private string sport;
  11.  
  12.         public string Sport
  13.         {
  14.             get { return sport; }
  15.             set { sport = value; }
  16.         }
  17.  
  18.         public Athlete(string name, int age, string sport)
  19.             : base(name, age)
  20.         {
  21.             this.sport = sport;
  22.         }
  23.  
  24.         public override void IntroduceYourSelf()
  25.         {
  26.             Console.WriteLine("I am a athlete. My name is {0}. I am {1} years old. I am {2}. My sport = {3}", name, age, nationality, sport);
  27.         }
  28.  
  29.     }
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement