Ejemplo n.º 1
0
 public void UnRegister(IMsgI18N obServer)
 {
     if (this.obServerList.Contains(obServer))
     {
         this.obServerList.Remove(obServer);
     }
 }
Ejemplo n.º 2
0
 public void Register(IMsgI18N obServer)
 {
     if (this.obServerList.Contains(obServer))
     {
         return;
     }
     this.obServerList.Add(obServer);
 }