DataTable.TableName Property
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
The name of the DataTable.
- Attributes
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).
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
The TableName is used to return this table from the parent DataSet object's DataTableCollection (returned by the Tables property).
מוצר | גירסאות |
---|---|
.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 |
משוב של .NET
.NET הוא פרויקט קוד פתוח. בחר קישור כדי לספק משוב: