I have to add a value to an empty field in the last row of the table using C#.
What changes should i make to the following code so that i can set 'thisRow' to last row in the table rather than to a new row.
DataRow thisRow = thisDataSet.Tab les["Table"].NewRow();
thisRow["Exit_time"] = Exittime;
thisDataSet.Tab les["Table"].Rows.Add(thisR ow);
What changes should i make to the following code so that i can set 'thisRow' to last row in the table rather than to a new row.
DataRow thisRow = thisDataSet.Tab les["Table"].NewRow();
thisRow["Exit_time"] = Exittime;
thisDataSet.Tab les["Table"].Rows.Add(thisR ow);
Comment