string转化为datarow
string转化为datarow?DataRow sqdr0 = ds.Tables[0].Rows[0 ];
DataRow sqdr1 = ds.Tables[0].Rows[1];
DataRow sqdr2 = ds.Tables[0].Rows[2];
DataRow sqdr3 = ds.Tables[0].Rows[3];
.......
想设计一个循环:
for(int i=0;i<30;i++)
{
DataRow sqdr0 = ds.Tables[0].Rows[i];
}
红色字体该怎样写,才能是sqdr0,sqdr1,sqdr2...........