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

Contains() public method

Determines whether a Category with the specified value is in the collection.
public Contains ( string value ) : bool
value string The argument value to locate in the collection.
return bool
        public bool Contains(string value)
        {
            return this[value] != null;
        }

Same methods

CategoryCollection::Contains ( Category item ) : bool