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