System.Windows.Forms.ListView.ListViewItemCollection.AddRange C# (CSharp) Method

AddRange() public method

public AddRange ( ListViewItemCollection items ) : void
items ListViewItemCollection
return void
			public void AddRange (ListViewItemCollection items)
			{
				if (items == null)
					throw new ArgumentNullException ("Argument cannot be null!", "items");

				ListViewItem[] itemArray = new ListViewItem[items.Count];
				items.CopyTo (itemArray,0);
				this.AddRange (itemArray);
			}

Same methods

ListView.ListViewItemCollection::AddRange ( System.Windows.Forms.ListViewItem items ) : void