Пример #1
0
        public void Remove(string contentName, int index)
        {
            IncludeContent content = this.GetContent(contentName);

            if (content != null)
            {
                content.Remove(index);
            }
        }
Пример #2
0
        public void Remove(string contentName, IncludeItem item)
        {
            IncludeContent content = this.GetContent(contentName);

            if (content != null)
            {
                content.Remove(item);
            }
        }
Пример #3
0
 public void Remove(int index)
 {
     _default.Remove(index);
 }