DataRow drEmpty = dsResult.Tables[1].NewRow();
dsResult.Tables[1].Rows.InsertAt(drEmpty, 0);
DataRow drBranch = dsResult.Tables[1].Rows[1];
drBranch[1] = "Branch"; <--error
dsResult.Tables[1].Rows.InsertAt(drBranch, 1);
我对这几行代码的预期输出是通过在其中添加“分支”将第一个空行数据添加到我的下拉列表框中和第二行,但我没有这样做
给出错误消息 - 输入字符串的格式不正确。无法存储在 ows_ID 列中。预期类型是 Int64。
之后我尝试更改为
drBranch[1] = int64.Parse("Branch");
我得到另一个错误
第二个错误消息——输入字符串的格式不正确。
我已经得到了我想要的答案,我会在 7 小时后发布答案,谢谢大家