System.Data.DataTableCollection.Contains C# (CSharp) Метод

Contains() публичный Метод

Checks if a table, specified by name, exists in the collection.
public Contains ( string name ) : bool
name string
Результат 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