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

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

public Contains ( string name, string tableNamespace ) : bool
name string
tableNamespace string
Результат bool
        public bool Contains(string name, string tableNamespace)
        {
            if (name == null)
            {
                throw ExceptionBuilder.ArgumentNull(nameof(name));
            }

            if (tableNamespace == null)
            {
                throw ExceptionBuilder.ArgumentNull(nameof(tableNamespace));
            }

            return (InternalIndexOf(name, tableNamespace) >= 0);
        }

Same methods

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