我有一个包含一列的数据表:
this.callsTable.Columns.Add("Call", typeof(String));
然后我想在该数据表中添加一行,但是想要给出一个特定的索引,注释的数字是所需的索引:
this.callsTable.Rows.Add("Legs"); //11
更新
答案 0 :(得分:14)
您可以使用DataTable.Rows.InsertAt
方法。
DataRow dr = callsTable.NewRow(); //Create New Row
dr["Call"] = "Legs"; // Set Column Value
callsTable.Rows.InsertAt(dr, 11); // InsertAt specified position
请参阅:DataRowCollection.InsertAt Method
如果为pos参数指定的值大于 集合中的行数,新行将添加到结尾。