DataGridView のデータを DataSet に追加するにはどうすればよいですか (列名を含む)
さて、私は以下のコードの途中で始めて立ち往生しました:
DataTable table = new DataTable();
DataRow newRow = new DataRow();
table.Columns.Add("productname"); //first column
table.Columns.Add("brandname"); //second column
table.Columns.Add("quantity"); //third column
table.Columns.Add("price"); //fourth column
次に、この DataSet を次のような XML ファイルに書き込む必要があります。
<stock>
<items> //How to add these two extra tags? ('stock' and 'items')
----Column Names----
<items>
<stock>
よろしくお願い
します。