public void Main(string[] args) { Dog objDog = new Dog(); objDog.Eat(); base.Eat(); }
static void Main(string[] args) { Dog dog = new Dog(); dog.Eat(); dog.Feature(); dog.Noise(); }