public virtual void Visit(EventDeclarationCollection events)
 {
     foreach (var eventDecl in events)
     {
         Visit(eventDecl);
     }
 }
예제 #2
0
 public virtual void Build(EventDeclarationCollection events)
 {
     foreach (var eventDecl in events)
     {
         Build(eventDecl);
     }
 }
예제 #3
0
 public void CopyTo(EventDeclarationCollection copy)
 {
     foreach (var item in this)
     {
         item.CopyTo(copy.Add());
     }
 }