DataRow[] コレクションから DataTable を取得するには?
次の変換を試みましたが、null が返されます。
string ProcessQuery(ref DataRow[] rows)
{
DataTable _tb = new DataTable();
foreach (DataRow _dr in rows)
{
_tb.Rows.Add(_dr);
}
_tb.AcceptChanges();
...
...
}
助けを求めてください。