我有一个现有的数据表,预定义了两列。
例:
第1栏=姓名
第2列=姓氏
我的数据表中当前没有行。
Datatable.Rows.Add - 会在我的收藏中添加一行
现在我要写入当前添加的行和列1(名称),文本“Bob”然后写入当前行和列2(姓氏),文本为“smith”
我似乎无法弄清楚如何做到这一点。非常感谢任何帮助。
答案 0 :(得分:2)
您可以添加包含指定信息的DataRow
:
Dim dtTable As New DataTable
'create a new data row.
Dim drNewRow As DataRow = dtTable.NewRow
'specify the information of the new row.
drNewRow("Name") = "Bob"
drNewRow("Surname") = "Smith"
'add the new row with specified information to the table.
dtTable.Rows.Add(drNewRow)