NAnt.NUnit2.Types.CategoryCollection.Insert C# (CSharp) Méthode

Insert() public méthode

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