Exemple #1
0
 public static void atTheParty(IMannerable obj)
 {
     Console.WriteLine("At the Party ");
     obj.Wish();
     Console.WriteLine("At the Party ");
     obj.Depart();
 }
Exemple #2
0
 private static void AtTheParty(IMannerable obj)
 {
     Console.WriteLine("At the Party");
     obj.Wish();
     obj.Depart();
 }
 public static void atTheParty(IMannerable obj)
 {
     Console.WriteLine("\nAt the Party");
     obj.depart();
     obj.wish();
 }