System.Data.DataTableCollection.Contains C# (CSharp) Method

Contains() public method

Checks if a table, specified by name, exists in the collection.
public Contains ( string name ) : bool
name string
return bool
        public bool Contains(string name) => (InternalIndexOf(name) >= 0);

Same methods

DataTableCollection::Contains ( string name, bool caseSensitive ) : bool
DataTableCollection::Contains ( string name, string tableNamespace ) : bool
DataTableCollection::Contains ( string name, string tableNamespace, bool checkProperty, bool caseSensitive ) : bool