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 World3a3b
- {
- 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 override void IntroduceYourSelf()
- {
- Console.WriteLine("---------------- Athlete --------------");
- base.IntroduceYourSelf();
- Console.WriteLine("Sport = {0}", sport);
- Console.WriteLine("----------------- End -------------------");
- }
- public override string ToString() // new
- {
- return base.ToString() + " Sport = " + sport;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement