datalist

What sum are you trying to calculate?

Code:
int i1 = 2;
int i2 = 5;

int sum = i1+ i2;

// not sure on the syntax for dataList
// maybe rows[index][columnIndex]
dataList.Columns[index] = sum;
 
Back
Top