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

IndexOf() public method

Retrieves the index of a specified Category object in the collection.
public IndexOf ( Category item ) : int
item Category The object for which the index is returned.
return int
        public int IndexOf(Category item)
        {
            return base.List.IndexOf(item);
        }