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

AddRange() public method

Adds the elements of an array to the end of this NavigatorItemCollection.
public AddRange ( NavigatorItem items ) : void
items NavigatorItem /// The array whose elements are to be added to the end of this NavigatorItemCollection. ///
return void
        public virtual void AddRange(NavigatorItem[] items)
        {
            foreach (NavigatorItem item in items)
            {
                this.List.Add(item);
            }
        }

Same methods

NavigatorItemCollection::AddRange ( NavigatorItemCollection items ) : void