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

Insert() public method

Inserts a ProjectBase into the collection at the specified index.
public Insert ( int index, ProjectBase item ) : void
index int The zero-based index at which should be inserted.
item ProjectBase The to insert.
return void
        public void Insert(int index, ProjectBase item)
        {
            base.List.Insert(index, item);
        }