לקריאה באנגלית ערוך

שתף באמצעות


DataTable.TableName Property

Definition

Gets or sets the name of the DataTable.

public string TableName { get; set; }
[System.Data.DataSysDescription("DataTableTableNameDescr")]
public string TableName { get; set; }

Property Value

The name of the DataTable.

Attributes

Exceptions

null or empty string ("") is passed in and this table belongs to a collection.

The table belongs to a collection that already has a table with the same name. (Comparison is case-sensitive).

Examples

The following example prints the TableName for each table in a collection of DataTable objects.

private void GetTableNames(DataSet dataSet)
{
    // Print each table's TableName.
    foreach(DataTable table in dataSet.Tables)
    {
        Console.WriteLine(table.TableName);
    }
}

Remarks

The TableName is used to return this table from the parent DataSet object's DataTableCollection (returned by the Tables property).

Applies to

מוצר גירסאות
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.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