System.Windows.Forms.CommandBarItemCollection.AddRange C# (CSharp) Method

AddRange() public method

public AddRange ( ICollection items ) : void
items ICollection
return void
        public void AddRange(ICollection items)
        {
            foreach (CommandBarItem item in items)
            {
                this.items.Add(item);

                if (this.commandBar != null)
                {
                    this.commandBar.AddItem(item);
                }
            }
        }