public ResultTable(DataTable Table) { if (Table == null) { throw new Exception("Table is NULL!"); } mTable = Table; mRows = new ResultRowCollection(mTable.Rows); mRowCount = -1; }
public ResultTable() { mTable = new DataTable(); mRows = null; mRowCount = -1; }