I want to change a Datarow value. I want to change DT2[0].ItemArray[3] I tried this code, but it didn\'t work.
Datarow
DT2[0].ItemArray[3]
private void Func(D
With the ItemArray Property you get or set the ENTIRE array, not a single value.
Use this to set the fourth item:
DT2[0][3] = 3;