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

CanRemove() public method

Verifies if a given table can be removed from the collection.
public CanRemove ( DataTable table ) : bool
table DataTable
return bool
        public bool CanRemove(DataTable table) => CanRemove(table, false);

Same methods

DataTableCollection::CanRemove ( DataTable table, bool fThrowException ) : bool