newtelligence.DasBlog.Web.Core.NavigatorItemCollection.Insert C# (CSharp) 메소드

Insert() 공개 메소드

Inserts an element into the NavigatorItemCollection at the specified index
public Insert ( int index, NavigatorItem value ) : void
index int /// The index at which the NavigatorItem is to be inserted. ///
value NavigatorItem /// The NavigatorItem to insert. ///
리턴 void
        public virtual void Insert(int index, NavigatorItem value)
        {
            this.List.Insert(index, value);
        }