Horje
declare dataset in powershell Code Example
declare dataset in powershell
$dt.TableName = "Me"
$ds = New-Object System.Data.DataSet
$ds.Tables.Add($dt)

$dt2 = New-Object System.Data.Datatable "AnotherTable"
[void]$dt2.Columns.Add("MyColumn")
[void]$dt2.Rows.Add("MyRow")
$ds.Tables.Add($dt2)

$ds.tables["Me"]
$ds.tables["AnotherTable"]




Shell

Related
instagram private viewer api github Code Example instagram private viewer api github Code Example
clear the log folder in var linux to a max file of 500M Code Example clear the log folder in var linux to a max file of 500M Code Example
linux open calc from the terminal Code Example linux open calc from the terminal Code Example
sshkeygen validate keys Code Example sshkeygen validate keys Code Example
installing GUN database in linux Code Example installing GUN database in linux Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
12