Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace World1b
- {
- class Athlete : Person
- {
- // public string Sport {get; set;};
- private string sport;
- public string Sport
- {
- get { return sport; }
- set { sport = value; }
- }
- public Athlete(string name, int age, string sport)
- :base(name, age)
- {
- this.sport = sport;
- }
- // public new void IntroduceYourSelf()
- public override void IntroduceYourSelf()
- {
- // onlyRead = 2.71 * age;
- Console.WriteLine("I am an athlete! ");
- base.IntroduceYourSelf();
- Console.WriteLine("My Sport = {0}", sport);
- }
- }
- }
Add Comment
Please, Sign In to add comment