Advertisement
wingman007

C#_OOP_433_Athlete.cs

Mar 20th, 2014
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.32 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace OOP4
  7. {
  8.     class Athlete : Human
  9.     {
  10.         private string sport;
  11.  
  12.         public Athlete(string name, int age, string sport)
  13.             : base(name, age)
  14.         {
  15.             this.sport = sport;
  16.         }
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement