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

Add() public method

Adds a Category to the end of the collection.
public Add ( Category item ) : int
item Category The to be added to the end of the collection.
return int
        public int Add(Category item)
        {
            return base.List.Add(item);
        }