Foreach遍历DataTable
大神请路过
foreach
(DataRow dr
in
da_col.Rows)
{
Object[] os = dr.ItemArray;
foreach
(Object o
in
os)
{
Console.WriteLine(o);
}
}