Advertisement
wingman007

C#_OOP_2b_Student.cs

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