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;
- namespace OOP6
- {
- class Athlete : Human
- {
- 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("I am a athlete. My name is {0}. I am {1} years old. I am {2}. My sport = {3}", name, age, nationality, sport);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement