コード例 #1
0
 public void accept(Department dp)
 {
     foreach (var item in list)
     {
         item.accept(dp);
     }
 }
コード例 #2
0
 public void accept(Department handler)
 {
     handler.visit(this);
 }