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

AddRange() public method

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

Same methods

CategoryCollection::AddRange ( CategoryCollection items ) : void