DataTable.TableName Property

Definition

Gets or sets the name of the DataTable.

public:
 property System::String ^ TableName { System::String ^ get(); void set(System::String ^ value); };
public string TableName { get; set; }
[System.Data.DataSysDescription("DataTableTableNameDescr")]
public string TableName { get; set; }
member this.TableName : string with get, set
[<System.Data.DataSysDescription("DataTableTableNameDescr")>]
member this.TableName : string with get, set
Public Property TableName As String

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);
    }
}
Private Sub GetTableNames(dataSet As DataSet)
     ' Print each table's TableName.
     Dim table As DataTable
     For Each table In dataSet.Tables
         Console.WriteLine(table.TableName)
     Next table
End Sub

Remarks

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

Applies to

See also