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 World1a
- {
- class Athlete : Person
- {
- public string Sport { get; set; }
- public Athlete(string name, int age, string sport)
- :base(name, age)
- {
- Sport = sport;
- }
- public override void IntroduceYourSelf()
- {
- // Console.WriteLine("My name is {0}. I am {1} years old! My balne is {2}. My nationality is {3}. Sport = {4}", name, age, Balance, nationality, Sport);
- Console.WriteLine("-------------------------");
- base.IntroduceYourSelf();
- Console.WriteLine("Sport = {0}", Sport);
- Console.WriteLine("-------------------------");
- }
- }
- }
Add Comment
Please, Sign In to add comment