Ejemplo n.º 1
0
 public void Add(CallHandler cm)
 {
     if (next != null)
     {
         next.Add(cm);
     }
     else
     {
         next = cm;
     }
 }