Search code examples
c#datatableinsertposition

c# datatable insert column at position 0


does anyone know the best way to insert a column in a datatable at position 0?


Solution

  • You can use the following code to add column to Datatable at postion 0:

        DataColumn Col   = datatable.Columns.Add("Column Name", System.Type.GetType("System.Boolean"));
        Col.SetOrdinal(0);// to put the column in position 0;