How to get a DataTable from DataRow[] collection ?
I tried the following conversion , but it returns null.
string ProcessQuery(ref DataRow[] rows)
{
DataTable _tb = new DataTable();
foreach (DataRow _dr in rows)
{
_tb.Rows.Add(_dr);
}
_tb.AcceptChanges();
...
...
}
Request your help.