CreateListFromDataTable Method (StorageExec)
- Last UpdatedNov 06, 2025
- 1 minute read
The CreateListFromDataTable() method creates a list of StorageExec objects populated with the data from the specified DataTable.
'Declaration
Public Shared Function CreateListFromDataTable( _
ByVal dt As DataTable _
) As BindingList(Of StorageExec)
'Usage
Dim dt As DataTable
Dim value As BindingList(Of StorageExec)
value = StorageExec.CreateListFromDataTable(dt)
public static BindingList<StorageExec> CreateListFromDataTable(
DataTable dt
)
Parameters
- dt
- Holds the DataTable that contains the data for populating the list.
Return Value
Returns a list of StorageExec objects.