标签: c# asp.net
我该怎么做?
感谢
答案 0 :(得分:3)
使用循环标准非常简单:
int rowCount = myTable.Rows.Count; for(int i = 2; i < rowCount; i++) { myTable.Rows.RemoveAt(i); }