foreach (object r in ie)
{
foreach (object c in r.GetType().GetProperties().Select(x => x.GetValue(r, null)))
{
}
}
因为要用脚标,哪位能帮我把上边的语句改成For循环的形式,谢谢.
foreach (object r in ie)
{
foreach (object c in r.GetType().GetProperties().Select(x => x.GetValue(r, null)))
{
}
}
因为要用脚标,哪位能帮我把上边的语句改成For循环的形式,谢谢.
object rs=r.GetType().GetProperties().Select(x => x.GetValue(r, null));
for(int i=0;i<r.length;i++)
{objcet c=rs[i];
}
不清楚rs的数据结构,按照数组写的~