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);
        }