DataRow[]
c#でaの値を文字列に戻したい
これが私のものDataTable
です:
DataTable table = new DataTable();
table.Columns.Add("ID", typeof(int));
table.Columns.Add("BugDescription", typeof(string));
table.Columns.Add("UnitPrice", typeof(double));
table.Rows.Add(1, "Bug 1", 10.00);
table.Rows.Add(2, "Bug 2", 20.00);
次に、ID = 1 の行を格納するDataRow[]
呼び出しを作成します。result
DataRow[] result = table.Select("ID = 1");
達成したい最後のステップは、BugDescription 値を という名前の文字列に追加することですdescription
。
どうすればこれを達成できますか?