铲铲 再来看看这个问题,很简单,谢谢
public static datatable opentable(string tablename,string[] column,bool iscondition){
string tempsql="";
for (i=0;i<column.length;i++)
{
tempsql+=column[i];
if(i<column.length-1)
{
if(iscondition)
{
tempsql+=" and ";
}
else
{
tempsql+=" , ";
}
}
}
}
--------------------------------------------
我把三个参数传来,参数如下:
第一个dataitem表,
第二个,co={"conID="+cid};
第三个参数为true
可以帮助我看看for循环里是怎么理解的呢?