Advertisement
wingman007

OOP2bCatDogProgram

Mar 22nd, 2016
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.52 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 Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             Cat cat = new Cat("Gloriq", 5);
  14.             Dog dog = new Dog("Sharo", 5);
  15.  
  16.             Trainer tr1 = new Trainer();
  17.             tr1.introduce();
  18.             tr1.Animal = cat;
  19.             tr1.introduce();
  20.  
  21.             tr1.Animal = dog;
  22.             tr1.introduce();
  23.  
  24.         }
  25.     }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement