newtelligence.DasBlog.Web.Core.NavigatorItemCollection.Remove C# (CSharp) Méthode

Remove() public méthode

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. ///
Résultat void
        public virtual void Remove(NavigatorItem value)
        {
            this.List.Remove(value);
        }