コード例 #1
0
 public static void atTheParty(IMannerable obj)
 {
     Console.WriteLine("At the Party ");
     obj.Wish();
     Console.WriteLine("At the Party ");
     obj.Depart();
 }
コード例 #2
0
ファイル: Program.cs プロジェクト: meet2312/SwabhavRepo
 private static void AtTheParty(IMannerable obj)
 {
     Console.WriteLine("At the Party");
     obj.Wish();
     obj.Depart();
 }