wingman007

OOP2bCatDogDog

Mar 22nd, 2016
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.46 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace CatDog2b
  8. {
  9.     class Dog : Animal
  10.  
  11.     {
  12.         public override string MakeNoice()
  13.         {
  14.             //throw new NotImplementedException();
  15.             return " I am dog." + base.MakeNoice() + " Wof!!";
  16.         }
  17.  
  18.         public Dog(string name, int age)
  19.             :base( name, age)
  20.         {
  21.  
  22.         }
  23.     }
  24. }
Add Comment
Please, Sign In to add comment