NAnt.VSNet.ProjectBaseCollection.Insert C# (CSharp) Méthode

Insert() public méthode

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.
Résultat void
        public void Insert(int index, ProjectBase item)
        {
            base.List.Insert(index, item);
        }