Question:When Deleting a DataRow from the DataRowCollection of a DataTable, you can:
A use the DataRowCollection.Remove method to immediately delete the row.
B use the DataRowCollection.Remove method to mark the row for deletion when DataRow.AcceptChanges is called.
C use the DataRow.Delete method to immediately delete the row.
D use the DataRow.Delete method to mark the row for deletion when DataRowAcceptChanges is called.
+ AnswerB
+ Report