如何将字符串变量分配给数据表

本文关键字:分配 数据表 变量 字符串 | 更新日期: 2023-09-27 18:04:34

我必须将字符串变量分配给datatable。dtHistoryList.Rows[1].ItemArray[3] = txtNaiyo.Text;这行不通。

如何将字符串变量分配给数据表

使用索引器

dtHistoryList.Rows[1][3] = txtNaiyo.Text

dtHistoryList.Rows[1]["rowName"] = txtNaiyo.Text