Olvasás angol nyelven Szerkesztés

Megosztás a következőn keresztül:


DataTableCollection.CanRemove(DataTable) Method

Definition

Verifies whether the specified DataTable object can be removed from the collection.

C#
public bool CanRemove(System.Data.DataTable? table);
C#
public bool CanRemove(System.Data.DataTable table);

Parameters

table
DataTable

The DataTable in the collection to perform the check against.

Returns

true if the table can be removed; otherwise false.

Examples

The following example uses the CanRemove to test whether each table can be removed from a DataSet. If so, the Remove method is called to remove the table.

C#
private void RemoveTables()
{
    DataTable table;

    // presuming a DataGrid is displaying more than one table, get its DataSet.
    DataSet thisDataSet = (DataSet)DataGrid1.DataSource;
    while (thisDataSet.Tables.Count > 0)
    {
        table = thisDataSet.Tables[0];
        if (thisDataSet.Tables.CanRemove(table))
            thisDataSet.Tables.Remove(table);
    }
}

Applies to

Termék Verziók
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1

See also