已知:DataSet data=new DataSet();则删除数据集data中person数据表的第5行数据的方法为()
A: data.Tables["person "].Rows[5].Delete();
B: data.Tables["person "].Rows.Delete(5);
C: data.Tables["person "].Rows[4].Delete();
D: data.Tables["person "].Rows[].Delete(4);
出自:计算机科学