Select from following answers:- DataTable.NewRow

- The DataRow constructor
- RowCollection.Add
- All Above
To add a new row, first call the DataTable.NewRow method. This method ensures that DataRow references defined DataTable DataColumns.
The RowCollection.Add method does not create a new DataRow unless you use an overload that creates a DataRow and adds it to the RowCollection. This overload does not allow you to access the defined DataColumns before adding to the DataTable.
Show Correct Answer
Source: MeasureUp.Com | |
Alert Moderator