DataSet.DataSetName Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene o imposta il nome della classe DataSet corrente.
public:
property System::String ^ DataSetName { System::String ^ get(); void set(System::String ^ value); };
public string DataSetName { get; set; }
[System.Data.DataSysDescription("DataSetDataSetNameDescr")]
public string DataSetName { get; set; }
member this.DataSetName : string with get, set
[<System.Data.DataSysDescription("DataSetDataSetNameDescr")>]
member this.DataSetName : string with get, set
Public Property DataSetName As String
Valore della proprietà
Nome di DataSet.
- Attributi
Esempio
Nell'esempio seguente viene creato un nuovo DataSet oggetto con l'oggetto specificato 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")));
}
Private Sub CreateDataSet()
Dim dataSet As DataSet
dataSet = New DataSet("SuppliersProducts")
Console.WriteLine(dataSet.DataSetName)
End Sub
Si applica a
Vedi anche
Collabora con noi su GitHub
L'origine di questo contenuto è disponibile in GitHub, in cui è anche possibile creare ed esaminare i problemi e le richieste pull. Per ulteriori informazioni, vedere la guida per i collaboratori.