NAnt.NUnit2.Types.CategoryCollection.AddRange C# (CSharp) Method

AddRange() public method

Adds the elements of a CategoryCollection to the end of the collection.
public AddRange ( CategoryCollection items ) : void
items CategoryCollection The to be added to the end of the collection.
return void
        public void AddRange(CategoryCollection items)
        {
            for (int i = 0; (i < items.Count); i = (i + 1)) {
                Add(items[i]);
            }
        }

Same methods

CategoryCollection::AddRange ( Category items ) : void