Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace CatDog2b
- {
- class Program
- {
- static void Main(string[] args)
- {
- Cat cat = new Cat("Gloriq", 5);
- Dog dog = new Dog("Sharo", 5);
- Trainer tr1 = new Trainer();
- tr1.introduce();
- tr1.Animal = cat;
- tr1.introduce();
- tr1.Animal = dog;
- tr1.introduce();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement