Advertisement
wingman007

OOP2bCatDogCat

Mar 22nd, 2016
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.45 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 Cat: Animal
  10.     {
  11.         public override string MakeNoice()
  12.         {
  13.             //  throw new NotImplementedException();
  14.             return " I am cat." + base.MakeNoice() + " Mquu!!";
  15.         }
  16.         public Cat(string name, int age)
  17.             : base(name, age)
  18.         { }
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement