Possible Duplicate:
Unable to change DataRow value
I have the Two-dimensional datarow array
like this
Datarow Mydatarow [][] = new Datarow[5][5] ;
and initial Mydatarow
form database ...
Now I Want to do this code and change Mydatarow
value
Mydatarow [Index][i].ItemArray[3]= "S";
I use This Code to change Mydatarowvalue
But it dos'nt work
Mydatarow [Index][i].BeginEdit();
Mydatarow [Index][i].SetModified();
Mydatarow [Index][i].ItemArray[3]= "S";
Mydatarow [Index][i].EndEdit();
Mydatarow [Index][i].AcceptChanges();
please help me to change datarow value