我有Two-dimensional datarow array
这样的
Datarow Mydatarow [][] = new Datarow[5][5] ;
和初始Mydatarow
表格数据库......
现在我想要执行此代码并更改Mydatarow
值
Mydatarow [Index][i].ItemArray[3]= "S";
我使用此代码更改Mydatarowvalue
但它无法正常工作
Mydatarow [Index][i].BeginEdit();
Mydatarow [Index][i].SetModified();
Mydatarow [Index][i].ItemArray[3]= "S";
Mydatarow [Index][i].EndEdit();
Mydatarow [Index][i].AcceptChanges();
请帮我改变数据行值
答案 0 :(得分:0)
您在声明数组时遇到问题:
Datarow Mydatarow [][] = Datarow[5][5] ;
应该是
Datarow[][] Mydatarow = new Datarow[5][];
所以:
Mydatarow[Index][i].ItemArray[3]= "S";//should work fine