wingman007

OOPPrinciplesStatic1aAthlete

Mar 18th, 2016
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.81 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 World1a
  8. {
  9.     class Athlete : Person
  10.     {
  11.         public string Sport { get; set; }
  12.  
  13.         public Athlete(string name, int age, string sport)
  14.             :base(name, age)
  15.         {
  16.             Sport = sport;
  17.         }
  18.  
  19.         public override void IntroduceYourSelf()
  20.         {
  21.             // Console.WriteLine("My name is {0}. I am {1} years old! My balne is {2}. My nationality is {3}. Sport = {4}", name, age, Balance, nationality, Sport);
  22.             Console.WriteLine("-------------------------");
  23.             base.IntroduceYourSelf();
  24.             Console.WriteLine("Sport = {0}", Sport);
  25.             Console.WriteLine("-------------------------");
  26.         }
  27.  
  28.     }
  29. }
Add Comment
Please, Sign In to add comment