Esempio n. 1
0
 public void Visit(Group g)
 {
     throw new NotImplementedException();
 }
Esempio n. 2
0
 public void Visit(Group g)
 {
     Console.WriteLine($"I am the group named {g.Name}.");
     g.TraverseChildren(this);
 }