22# Abstraction Abstract Classes Object Oriented Programming
22# Abstraction Abstract Classes Object Oriented Programming
using System;
namespace darklter
{
class Program
{
static void Main(string[] args)
{
Animal d = new Dog("Ginger",2,"Mini Pincher");
Animal c = new Cat("Monkey",3);
d.makeSound();
d.sleep();
c.makeSound();
c.sleep();
}
}