public void UnRegister(IMsgI18N obServer) { if (this.obServerList.Contains(obServer)) { this.obServerList.Remove(obServer); } }
public void Register(IMsgI18N obServer) { if (this.obServerList.Contains(obServer)) { return; } this.obServerList.Add(obServer); }