1、

DataRow row = dt_NewCounty.Rows[0];
                  row.BeginEdit();
                  row["County"] = "";
                  row.EndEdit();
                  dt_NewCounty.AcceptChanges();

2、

   DataRow[] dr=Table.select(“”)

     dr[0].BeginEdit();

       dr_DuiBi[0][0] =“”;

     dr[0].EndEdit();

相关文章:

  • 2021-11-14
  • 2022-12-23
  • 2021-05-31
  • 2021-09-10
  • 2021-09-07
  • 2021-09-20
  • 2022-02-24
猜你喜欢
  • 2022-12-23
  • 2022-01-06
  • 2022-02-17
  • 2021-11-14
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案