wingman007

OOP2bCatDogAnimal

Mar 22nd, 2016
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.49 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 Trainer
  10.     {
  11.         public Animal Animal { get; set; }
  12.         public void introduce()
  13.         {
  14.             if (Animal == null)
  15.             {
  16.                 Console.WriteLine("No Animal");
  17.             }
  18.             else
  19.             {
  20.                 Console.WriteLine(Animal.MakeNoice());
  21.             }
  22.         }
  23.     }
  24. }
Add Comment
Please, Sign In to add comment