How to add columns in between data table C# | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
0

How to add columns in between data table C#

DataTable transposedTable; transposedTable.Columns.Add("Test_Case_Count", typeof(int)).SetOrdinal(1); transposedTable.Columns.Add("% of Automation", typeof(int)).SetOrdinal(3); transposedTable.Columns.Add("% of Executed", typeof(int)).SetOrdinal(5);

13th Dec 2016, 5:10 AM
Akwin Lopez
Akwin Lopez - avatar
1 ответ
0
Akwin Lopez Do you have a question?
22nd Jun 2019, 9:43 AM
SQrL
SQrL - avatar