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

Remove() public method

Removes a member from the collection.
public Remove ( Category item ) : void
item Category The to remove from the collection.
return void
        public void Remove(Category item)
        {
            base.List.Remove(item);
        }