both perform the same functionality, adding a row to the datatable, but the main difference is
DataTable dt1=new DataTable(); DataRow dr1=dt1.NewRow(); DataTable dt2=new DataTable(); dt2.Rows.Add(dr1);
Hope this will give you an idea.
Rudrik
source share