Ejemplo n.º 1
0
 public void AddUnRegistAction(VoidDelgate func)
 {
     if (func == null)
     {
         return;
     }
     DUnRegest += func;
 }
Ejemplo n.º 2
0
 public void AddRegistAction(VoidDelgate func)
 {
     if (func == null)
     {
         return;
     }
     DRegist += func;
     foreach (Itemagent it in _items)
     {
         func(it);
     }
 }