DataSet.DataSetName Property
.NET Framework 4
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"))); }
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.