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 OOP4
- {
- class Athlete : Human
- {
- private string sport;
- public Athlete(string name, int age, string sport)
- : base(name, age)
- {
- this.sport = sport;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement