/// <summary>
        /// Remove un element
        /// </summary>
        /// <param name="n"></param>
        public void Remove(INotify n)
        {
            List <INotify> list = this.List;
            INotify        e    = list.Find(x => x.GetHashCode() == n.GetHashCode());

            if (e != null)
            {
                list.Remove(e);
            }
        }