Is it possible to insert a DataRow into a DataTable with index 0?

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

+4
source share
1 answer
DataTable table = //... table.Rows.InsertAt(row, 0); 
+12
source

All Articles