public virtual bool Remove(MenuComponent component) { throw new NotSupportedException(); }
public override bool Remove(MenuComponent component) { return(_components.Remove(component)); }
public virtual void Add(MenuComponent component) { throw new NotSupportedException(); }
public override void Add(MenuComponent component) { _components.Add(component); }