NAnt.Core.DirScannerStringCollection.Contains C# (CSharp) Method

Contains() public method

Determines whether the specified string is in the DirScannerStringCollection.
String comparisons within the DirScannerStringCollection are only case-sensitive if CaseSensitive is
public Contains ( string value ) : bool
value string The string to locate in the . The value can be .
return bool
        public new virtual bool Contains(string value)
        {
            return (IndexOf(value) > -1);
        }