当前位置: 代码迷 >> ASP.NET >> foreach循环如何理解 请详细说一下
  详细解决方案

foreach循环如何理解 请详细说一下

热度:4233   发布时间:2013-02-25 00:00:00.0
foreach循环怎么理解 请详细说一下
foreach(DataRow myRow in ds2.Tables[0].Rows )
{
aa=aa+myRow[0]+"," ;
}

------解决方案--------------------------------------------------------
遍历ds2.Tables[0]所有行
myRow代表每一行循环中的变量名
myRow[0]代表这行的第一列
  相关解决方案