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