c# datatable insert column at position 0

c#, datatable, insert, position

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;

Problem

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

Original source