Advertisement
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 World2a
- {
- class Athlete : Person
- {
- 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()
- {
- Console.WriteLine("I am an Athlete!");
- base.IntroduceYourSelf();
- Console.WriteLine("Sport = {0}", sport);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement