SyntaxFix
Write A Post
Hire A Developer
Questions
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;