Exemplo n.º 1
0
 public void Dispaly()
 {
     Console.WriteLine("I am a " + Name);
     AHead.Display();
     foreach (Leg aleg in Legs)
     {
         aleg.Display();
     }
     ATail.Display();
     Console.WriteLine();
 }
Exemplo n.º 2
0
 //Helper method to show the result from client
 public void Dispaly()
 {
     Console.WriteLine("I am a " + Name);
     AHead.Display();
 }