newtelligence.DasBlog.Web.Core.NavigatorItemCollection.Insert C# (CSharp) Method

Insert() public method

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. ///
return void
        public virtual void Insert(int index, NavigatorItem value)
        {
            this.List.Insert(index, value);
        }