DataSet.DataSetName Property
.NET Framework (current version)
Gets or sets the name of the current DataSet.
Assembly: System.Data (in System.Data.dll)
The following example creates a new DataSet with the given DataSetName.
private void CreateDataSet() { DataSet dataSet = new DataSet("SuppliersProducts"); Console.WriteLine(dataSet.DataSetName); // Add a DataTable. dataSet.Tables.Add(new DataTable("Suppliers")); // Add a DataColumn to the DataTable. dataSet.Tables["Suppliers"].Columns.Add (new DataColumn("CompanyName", System.Type.GetType("System.String"))); }
.NET Framework
Available since 1.1
Available since 1.1
Show: