newtelligence.DasBlog.Web.Core.NavigatorItemCollection.Remove C# (CSharp) Метод

Remove() публичный Метод

Removes the first occurrence of a specific NavigatorItem from this NavigatorItemCollection.
public Remove ( NavigatorItem value ) : void
value NavigatorItem /// The NavigatorItem value to remove from this NavigatorItemCollection. ///
Результат void
        public virtual void Remove(NavigatorItem value)
        {
            this.List.Remove(value);
        }