List を DataTable 行全体として追加したいだけです。これが私が試したコードです。
private static DataTable _table = new DataTable();
List<string> tempList = new List<string>();
// tempList = {"A1","A2","A3","A4","A5","A6"}
_table.Rows.Add(tempList);
期待される出力:
col1|col2 |col3 |col4 |col5| col6
----+-----+-----+------+----+--
row1 A1 | A2 | A3 | A4 | A5 | A6
しかし、これは私にとってはうまくいきません。最初の列にデータ コレクションが挿入されます。
実際の出力:
col1 |col2 |col3 |col4 |col5| col6
----------+-----+-----+------+----+--
row1 A1,A2,A3.| | | | |
リストを使用して行全体を追加するのを手伝ってください。ありがとうございました