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

Insert() public method

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.
return void
        public void Insert(int index, Category item)
        {
            base.List.Insert(index, item);
        }