DataSet.DataSetName Property

 

Gets or sets the name of the current DataSet.

Namespace:   System.Data
Assembly:  System.Data (in System.Data.dll)

Public Property DataSetName As String

Property Value

Type: System.String

The name of the DataSet.

The following example creates a new DataSet with the given DataSetName.

Private Sub CreateDataSet() 
    Dim dataSet As DataSet
    dataSet = New DataSet("SuppliersProducts")
    Console.WriteLine(dataSet.DataSetName)
End Sub

.NET Framework
Available since 1.1
Return to top
Show: