NAnt.VSNet.ProjectBaseCollection.AddRange C# (CSharp) Method

AddRange() public method

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

Same methods

ProjectBaseCollection::AddRange ( ProjectBaseCollection items ) : void