5

This question answers how to insert a DataColumn at position 0. Is there a way to do the same thing with a DataRow? Or is that impossible? Thanks.

Community
  • 1
  • 1
rosscj2533
  • 9,195
  • 7
  • 39
  • 56

1 Answers1

13
DataTable table = //...
table.Rows.InsertAt(row, 0);
Doc Brown
  • 19,739
  • 7
  • 52
  • 88