A
ad
I use the code below to add a columns to the columns of a table.
Table1.Columns.Add("NewField", typeof(string));
But it always add the clolumn to the last position.
How can I add a column to the first position.
Table1.Columns.Add("NewField", typeof(string));
But it always add the clolumn to the last position.
How can I add a column to the first position.