Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
Dim dt As New DataTable(
"dt"
)
dt.Columns.Add(
"1"
"2"
"3"
Dim dr As DataRow
dr = dt.NewRow
dr(
) =
"11"
"21"
"31"
dt.Rows.Add(dr)
Dim dt2 As New DataTable(
dt2.Columns.Add(
dr = dt2.NewRow
"12"
"22"
"32"
dt2.Rows.Add(dr)
Dim ds As New DataSet
ds.Tables.Add(dt)
ds.Merge(dt2)